Hello,
I’d like to remove this white gap here.
Site: https://greentiger.co/
pw: cheese
I tried this code which worked for another section. Did I miss anything?
div#shopify-section-template--22205932503315__rich_text_xGg6Vr {
padding-top: 50px;
margin-bottom: 0px;
}
I also need to close this white gap here, or at least color it in with the same dark pink background color. Please help!
1 Like
HI @greentigershop
Check this one, I add also another margin so it wont be kissing on the banner below and above.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.theme-block h2 {
margin-bottom: 0px;
}
div#shopify-section-template--22205932503315__text_and_image_aGfGcm .index-section {
margin-bottom: 0px;
}
@media only screen and (min-width: 1050px) {
.feature-row {
padding: 4% 0;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
@Made4uo-Ribe THANK YOU!!!
Can you please me with another one? This is in the Refill Page. I tried the div padding-top: 50px code but it didn’t get rid of the white gap like the About Us page.