Stretching containers in the email sign up section

Solved

Stretching containers in the email sign up section

CreatorTim
Trailblazer
471 1 71

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:

CreatorTim_0-1737836797112.png

 

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

 

Thanks,
Tim

Accepted Solution (1)

DaisyVo
Shopify Partner
4402 488 581

This is an accepted solution.

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: image_480.png

 

I hope this helps

 

 Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

PaulNewton
Shopify Partner
7731 679 1608

Don't make duplicates 

https://community.shopify.com/c/shopify-design/how-to-stretch-containers-in-the-email-sign-up-sectio...

Which is duplicate of a 

https://community.shopify.com/c/shopify-design/how-to-stretch-containers-in-the-email-sign-up-sectio... 

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

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


CreatorTim
Trailblazer
471 1 71

Oh sorry, didn't know that

DaisyVo
Shopify Partner
4402 488 581

This is an accepted solution.

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: image_480.png

 

I hope this helps

 

 Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
CreatorTim
Trailblazer
471 1 71

Thanks man!