Desktop has created the space, but on mobile the images of top section are too close to the header. How can i ensure all pages have a gap?
mygreenroutine.earth
Desktop has created the space, but on mobile the images of top section are too close to the header. How can i ensure all pages have a gap?
mygreenroutine.earth
In your CSS settings, add:
@media screen and (max-width: 768px) {
section {
padding: 8px;
}
.shopify-section-group-main-header-group {
padding: unset;
}
}
It adds 8px of space to all sides of your sections (except for the header)
Hi @jonnyjones001 ,
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi,
This worked!
How do I make this uniform across every page on my store, not just the home
page?