jefuedo Posted June 18 Posted June 18 Hi -- I'm adding an unlinked page on my site to share with a select group of people. I'd like to not have the nav bar for the rest of the site visible on this page. Is there a way to add some code that can turn off the nav for this one page? I found another discussion thread that talked about something similar, but when I tried the steps they suggested, it ended up making the whole page blank and uneditable. I'm not a code guy so maybe I'm out of my depth here. Any help would be appreciated. Thanks! J
Lesum Posted June 18 Posted June 18 @jefuedo Can you please share the URL of the page where you'd like to hide the navbar? If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee?
Solution tuanphan Posted June 19 Solution Posted June 19 You can edit that page > Add a Code Block then paste this code into Code Block (hide whole header) <style> header#header { display: none !important; } </style> or this code (hide navigation items only) <style> header#header nav { display: none !important; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment