• There’s a button menu item which appears in the banner area between my logo and the navigation menu. I think the CSS class for it is button.menu-toggle.btn.

    Is this controlled anywhere in the theme options? I’d like to remove or hide it, but leave my other nav menu intact.

    It looks like the nav button used for mobile views. Is it possible it should just be hidden at a higher resolution, and if so, could someone please post intrux?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gmsiegel

    (@gmsiegel)

    I can hide this with CSS in my custom style.css file like so:

    button.menu-toggle.btn {display:none;}

    but it looks like this is needed for mobile navigation, so maybe there’s a better way?

    https://test.localgeek.us

    Thread Starter gmsiegel

    (@gmsiegel)

    I was able to fix this by using the following css code:

    @media (min-width: 991px) {
       .btn {display:none !important;}
    }

    The 991px value is arbitrary, depending on what min-width you need…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Moesia] Hide/remove button menu’ is closed to new replies.