Hi all,
We are on the Impulse theme and I would like to reduce the spacing between some of the sections on the homepage (aquabound.com). How would I go about doing this? Thanks in advance for your help!
Hi all,
We are on the Impulse theme and I would like to reduce the spacing between some of the sections on the homepage (aquabound.com). How would I go about doing this? Thanks in advance for your help!
Hi,
The margin between sections on large screen of your store is currently 75px. You can add this code to the bottom of the global CSS file (‘theme.css’) You can replace 60px by your desired gap. And this is for homepage only (with CSS class ‘body.template-index’).
@media only screen and (min-width: 769px) {
body.template-index .index-section {
margin: 60px 0;
}
}
However, I think a better way is too add custom code to the theme so you would be able to adjust the spacing between sections using theme editor which is similar to Dawn theme.