Stretching containers in the email sign up section

Hey, how can I extend the containers so that they go all the way to the end of the text? From a width of 750+px, it works normally, so I need to fix it from a width 560px to 749px so that the containers are the same width as the text.
See the image below:

Here’s my store: https://1049xn-ya.myshopify.com/
(Just scroll all the way down, there is the email sign-up section.)

Thanks,
Tim

Don’t make duplicates

https://community.shopify.com/c/shopify-design/how-to-stretch-containers-in-the-email-sign-up-section/td-p/2926642

Which is duplicate of a

https://community.shopify.com/c/shopify-design/how-to-stretch-containers-in-the-email-sign-up-section/m-p/2926557#M767630

Don’t try to monopolize attention wait for contribution or make better posts.

1 Like

Oh sorry, didn’t know that

Hi @CreatorTim

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 749px){
#contact_form, #ContactFooter, #ContactFooter > .newsletter-form__field-wrapper, #contact_form > .newsletter-form__field-wrapper {
    max-width: unset !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

Thanks man!