Skip to content

Instantly share code, notes, and snippets.

@abdulawal39
Created December 5, 2023 10:20
Show Gist options
  • Save abdulawal39/6b9cbe6db1b5978f5cd79d291c7b5e75 to your computer and use it in GitHub Desktop.
Save abdulawal39/6b9cbe6db1b5978f5cd79d291c7b5e75 to your computer and use it in GitHub Desktop.
Add the css code in TNC FlipBook > Global Settings > Custom CSS field to hide the scrollbar. This snippet is for TNC FlipBook - PDF viewer for WordPress: https://codecanyon.net/item/pdf-viewer-for-wordpress/8182815
/* Hide scrollbar for Chrome, Safari and Opera */
#viewerContainer::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
#viewerContainer {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment