• I’m working on a website at https://www.sandyhookfoundation.com/wp/

    There is a menu button in the upper left corner of the menu which i cant seem to get rid of. It is useful when the screen size is small (ie: minimized screen or tablet/smart phone screen) but shouldnt be there when the screen is maximized. Any help would be greatly appreciated

Viewing 3 replies - 1 through 3 (of 3 total)
  • That’s odd, you should contact the theme author about fixing that in the css.

    Until you do, as a quick fix, you can add this to your css:

    @media (min-width: 900px) {
    #mainnav-toggle {
        display: none;
    }
    }

    And change the ‘900px’ to a size of your choosing.

    Thread Starter ellismr

    (@ellismr)

    great that got rid of the button at least…thanks for the help

    When you resize the window smaller(below the default 900px as set), the button should reappear then as well.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to eliminate menu button’ is closed to new replies.