• Need some help removing the custom scroll bar and going back to a default one. I have tried to override the styles using css like this for example:

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

    also tried this:

    ::-webkit-scrollbar {?
    width: auto?!important;?
    height: auto?!important;?
    display: block?!important;?
    background: transparent?!important;
    }

    Let me know if you have any suggestions, thanks.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @captionlabs1

    I can you are using Custom JS to override the default Scrollbar? Or Custom Scrollbar coming the Theme you are using?

    Here are some CSS code which will have the current Scrollbar like Default Scrollbar:

    ::-webkit-scrollbar {
    width: auto;
    }
    ::-webkit-scrollbar-track {
    -webkit-box-shadow: auto;
    -webkit-border-radius: auto;
    border-radius: auto;
    background:auto;
    }
    ::-webkit-scrollbar-thumb {
    -webkit-border-radius:auto;
    border-radius:auto;
    background:auto;
    -webkit-box-shadow:auto;
    }
    ::-webkit-scrollbar-thumb:window-inactive {
    background: auto;
    }

    Let me know how it goes. Thanks

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.