Search code examples
htmlcssadminlte

Scrollbar in html


Can someone help me to fix this?

I have html page using template from admin-LTE and there's 2 'scrollbar-y' in my page. Can I remove the scrollbar from admin-LTE?, because I tried, it can remove 1 scrollbar but I cant scroll to my footer page

image


Solution

  • You can try this, I have used this in the past to make the scrollbar disappear I don't know if it will get rid of both of them though.

    ::-webkit-scrollbar {
      display: none;
    }