How can I adjust the newsletter button size in the Dawn theme?

Hi !

How do I adjust the button size of the newsletter signup?

Using theme DAWN

I want to make the button wider / broader.

Thank you!!

1 Like

@Anirac39
Can you provide website link so we get more idea about it .
Or
You can put below code in to base.css

online store → theme → edit code → base.css

.field {
    position: relative;
    width: 125% !important;
    /* display: flex; */
    transition: box-shadow var(--duration-short) ease;
}

Search above class which is .field and replace that class with the above one .
increase the width percentage as much as you need to the size of that newsletter box.

If you have any query regarding of it then feel free to ask .

Thanks!!!