How can I eliminate unwanted spacing at the bottom of my pages?

Hello,

I have a problem with the bottom of my pages.

There is some unused spacing of 120px that i can’t remove.

They are displayed on all my pages, but not on the product pages nor the home page.

My website is www.safesprayer.dk

I use the Narrative Theme

I hope someone can help with the coding :wink:

Thank you in advance!

1 Like

@Sadea - add this css to the very end of your theme.scss file and check

@media only screen and (min-width: 750px){
.content-for-layout {padding-bottom: 20px;}
}

@Sadea

yes, please add this code this one

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
#kontakt-os-fa-svar-pa-dine-sporgsmal-indenfor-24-timer main#MainContent {
    padding-bottom: 0;
}
1 Like

Thank you very much.

This fixed it!