How can I disable scrolling on my homepage?

Hi there,

My website is www.cainomaj.com. My question is about the home page only.

I ideally don’t want to allow scrolling here. For some reason, a white row (footer?) shows up at the bottom. I’ve been told by Shopify support that the only way to remove that is by hiring a developer.

The other option may be to just prevent scrolling on the home page. I’ve managed to hide the scroll bar, but you can still scroll down. I want to not allow scrolling down.

1 Like

@caino

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/timber.scss.liquid->paste below code at the bottom of the file.
.template-index main.main-content {
    padding-bottom: 0;
    overflow: hidden;
}
1 Like