Hi everyone,
I would like to remove the white gap on my home page between the first and second section (screen shot attached). However I only want to remove the gap between these sections on desktop.
I have attached the mobile view so you can see the gap I want under the BUY NOW button.
Your help is appreciated .
1 Like
@Timstar - do you want something like this?
@Timstar
yes, please add this
@media only screen and (min-width: 750px) {
div#shopify-section-1652238851daa8d546 {padding-top: 0;
margin-top: -55px;}
}
1 Like
@Timstar
on mobile
@media only screen and (max-width: 749px) {
div#shopify-section-1652238851daa8d546 {margin-top: -15px;}
}
@Timstar - please add this css to the very end of your theme.scss file and check
#shopify-section-1581847084750{padding-bottom: 0px;}
#shopify-section-1652238851daa8d546{padding-top: 10px;}
@Timstar - great, please accept it as solution.