rektguy Posted February 5, 2023 Posted February 5, 2023 I'm looking to hide the Hamburger Menu on Mobile since I am currently not using any additional pages and my website is set for a single page website. Anyone have a CSS code to remove that hamburger menu? Thanks!
tuanphan Posted February 8, 2023 Posted February 8, 2023 Hi, Add to Design > Custom CSS /* hide burger */ .burger-inner { visibility: hidden; } beverly, vivability and Adviceify 1 2 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!)
Adviceify Posted July 21, 2023 Posted July 21, 2023 On 2/8/2023 at 11:31 AM, tuanphan said: Hi, Add to Design > Custom CSS /* hide burger */ .burger-inner { visibility: hidden; } Thank you! tuanphan 1
beverly Posted August 13, 2023 Posted August 13, 2023 Is it possible to hide the menu on mobile only when opening some pages, but not for the entire website?
Lesum Posted August 13, 2023 Posted August 13, 2023 @beverly Yes, it's possible with some additional CSS code. If you could share your site URL and let me know on which pages you would like to hide the menu, I can write the required CSS code. Thanks! tuanphan 1 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?
tuanphan Posted August 13, 2023 Posted August 13, 2023 13 minutes ago, beverly said: Is it possible to hide the menu on mobile only when opening some pages, but not for the entire website? If you use Business Plan or higher, add this code to Page Settings > Advanced > Code Injection <style> /* hide burger */ .burger-inner { visibility: hidden; } </style> If you use Personal/Basic Plan, edit these pages > Add a Code Block (anywhere on page) > paste this code <style> /* hide burger */ .burger-inner { visibility: hidden; } </style> Lesum and beverly 2 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