Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #193523

    How would I go about hiding the menu bar on 1 of my pages, but not on the rest?

    Many thanks

    #193710

    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

    #194393

    Thanks for that. The link is:

    http://www.vinesdrive.com/free-lesson/

    Thanks

    #194395

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .page-id-1081 .main_menu { display: none; }

    Regards,
    Yigit

    #194405

    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

    #194407

    Hey!

    Sorry, please use following code instead

    .page-id-1081 #header { display: none; }

    Best regards,
    Yigit

    #194416

    It was my fault!

    That’s great, many thanks

    #194420

    Hi!

    You are welcome! Let us know if you have any other questions or issues :)

    Cheers!
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Hide Menu Bar on Single Page’ is closed to new replies.