• Resolved jkerksick

    (@jkerksick)


    I am trying to disable the Responsive Menu from showing up on one page, but I can’t seem to get the menu selector right when using CSS and the page ID (I’ve tried multiple variations of .menu-resp, .responsive-menu, .click-menu, etc).

    Essentially, what I need is to be able to code this:

    .page-id-1608 .responsive-menu {
         display: none;
    }

    What would be the correct wording to use in place of “.responsive-menu” that will hide the menu from that one page?

    https://wordpress.org/plugins/responsive-menu/

Viewing 1 replies (of 1 total)
  • Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi there,

    To hide the button itself you need to use #click-menu, as such please try the following:

    .page-id-1608 #click-menu {
         display: none !important;
    }

    All the best

Viewing 1 replies (of 1 total)

The topic ‘Hide Responsive Menu from one page’ is closed to new replies.