I have an awkward space (it’s yellow, and I want off white) between the product at the top of my page and the next section (featured products). I am unsure of how to remove it so that the transition between the sections is seamless. Is this a code issue or can this be edited in theme? The problem is on the main landing page.
Thanks for the help!
URL: https://americancampsupply.com/
Hi @ACSupply
- 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:
.section+.section {
margin-top: 0px !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe this worked!! Thanks so much for the help.