Tagged: disable menu bar, disable navigation bar, hide menu bar, hide navigation bar
Is there a way I can hide the menu bar only from the main business template page?
I am trying this, but it does not work:
.page-id-2 .main-navigation { display: none; }
Hello there,
Just login to your admin (Dashboard) page and go to Customize > Ambition Theme Options > Custom CSS and paste the below custom CSS code to hide the navigation bar only on business template page:
.business-layout .site-header .hgroup-wrap .hgroup-right { display:none; }
Thank you!