Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #383378

    I know this question has been asked many times already but I haven’t been able to find the exact solution for me. I have found other @media screen only CSS code to change the spacing between nav menu items between screen widths but that is not want I would like to do.

    The main menu text is under the logo on iPad in landscape mode. It correctly changes to the mobile menu in portrait mode

    Please…I would either like to

    1) activate the header mobile menu for smartphones and tablets below 1200px (instead of 990px)
    OR
    2) add CSS code to change the font size of the main nav menu text when only between 768 and 1200px

    #383923

    Hi TheMediaman!

    Add this to your custom CSS.

    @media only screen and (max-width: 1200px) {
    nav.main_menu { display: none !important; }
    #advanced_menu_toggle { display: block !important; }
    }

    Cheers!
    Elliott

    #385807

    Thank you, That worked.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Customize header mobile menu activation for smartphones and tablets from 990px’ is closed to new replies.