Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #563580

    Hello,
    I have the following CSS that adjusts the Header when minimizing the page:
    @media only screen and (max-width: 1240px) { .title_container .breadcrumb {
    left: 45px;
    right: auto;
    top: 83%;
    }}

    @media only screen and (max-width: 1130px) and (min-width: 990px) {
    .logo * {
    max-width: 77%;
    top: 6px;
    }}

    It appears to still have an overlap of the menu over the logo (see image link below).
    I’ve tried adjusting the max-width and min-width however there still seems to be an overlap.
    Please help.
    Thank you!

    #563604

    Hey tlchase!

    Add this to your custom CSS.

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

    Cheers!
    Elliott

    #564856

    Thanks Elliott, that worked great!!!

    #565199

    Hi,

    Great, glad you got it working :-)

    Regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.