How would I go about hiding the menu bar on 1 of my pages, but not on the rest?
Many thanks
Hey jvines!
Can you please give us a link to the page that you want to hide the menus?
If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.
On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .main_menu {
display: none;
}
Regards,
Ismael
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.page-id-1081 .main_menu { display: none; }
Regards,
Yigit
That worked thanks, however it didn’t have the desired effect as I didn’t explain myself very well..
Woud it be possible to hide the entire Header bar on that page?
Thanks
Hey!
Sorry, please use following code instead
.page-id-1081 #header { display: none; }
Best regards,
Yigit
It was my fault!
That’s great, many thanks