Hello.
I am trying to add a background picture to my newsletter section but can’t seem to find how. This is what I get :
This is what I want :
Thank you!
Hello.
I am trying to add a background picture to my newsletter section but can’t seem to find how. This is what I get :
This is what I want :
Thank you!
This could be done by adding the background image in that section through CSS. If you can share your store URL, it would be much easier to get an idea
can you please share store url so i will check and guide you
Go to your store click on Actions > Edit Code
Assets > theme.css or theme.css.liquid add below lines at the bottom of the file.
.index-section--newsletter-background {
background-image: url(https://cdn.shopify.com/s/files/1/0608/5191/2952/files/IMG_2471_edited_1950x.jpg?v=1638928881);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on shopify.dev.34@gmail.com | Shopify Design Changes | Custom Modifications In to Shopify Theme
thanks for url
can you try this code
.index-section--newsletter-background {
background-image: url(https://cdn.shopify.com/s/files/1/0608/5191/2952/files/IMG_2471_edited_1950x.jpg?v=1638928881);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@Savior It worked!! yay! thank you!
Is there a way to change the text color only for the newsletter? It would be better if the font is in white instead of black.
Thank you!
It worked!! yay! thank you!
Is there a way to change the text color only for the newsletter? It would be better if the font is in white instead of black.
Thank you!
Please add this
.newsletter-section.index-section--newsletter-background h2, .newsletter-section.index-section--newsletter-background p {
color: white;
}
Please like and accept the reply as solution if it helped you.
If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on shopify.dev.34@gmail.com | Shopify Design Changes | Custom Modifications In to Shopify Theme
@Savior it works! Thank you so much for your time!