• Resolved shamiam1980

    (@shamiam1980)


    I am using the free version. I found that the scrollbar is hidden on Chrome (Windows x64) but is shown normally on Firefox. Pages are scrolling normally, though. I guess that is intended as it appears on the live preview.

    I want to restore the scrollbar on Chrome if possible.

    • This topic was modified 4 years, 11 months ago by shamiam1980.

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

Viewing 1 replies (of 1 total)
  • Theme Author themeinwp

    (@themeinwp)

    Hello @shamiam1980 ,

    This is intended behavior and can be overridden using CSS.

    From your WordPress Dashboard navigate to Appearance ? Customize ? Additional CSS and add below CSS.

    body {
      scrollbar-width: inherit !important;
      -ms-overflow-style: inherit;
    }
    body::-webkit-scrollbar {
      width: inherit!important;
      height: inherit!important;
    }

    Hope this helps.

    Thanks,

Viewing 1 replies (of 1 total)
  • The topic ‘Scrollbar hidden on Chrome. Is that on purpose?’ is closed to new replies.