Created
December 5, 2023 10:20
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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