Created
July 18, 2020 10:51
-
-
Save abdulawal39/3e1b43a282f0cc14bca895e04e802c79 to your computer and use it in GitHub Desktop.
Hide Topbar Completely in PDF Viewer for WordPress
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
/** | |
* | |
* This will hide the topbar on viewer page | |
* put the following css in custom css field of PDF Viewer options page | |
* | |
*/ | |
.toolbar{ | |
display: none; | |
} | |
#viewerContainer{ | |
top: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment