Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #988590

    I need hamburger menu always on and located top left.

    At present, it will disappear on mobile view :(

    Please advise of CSS required?

    • This topic was modified 6 years, 1 month ago by washem. Reason: added credentials
    #988894

    Hey washem,

    When I loaded your page on my mobile phone, I can see the hum there.
    Not sure that we understand exactly what is the problem or what you need to achieve.

    Best regards,
    Basilis

    #992150

    no, definitely not there on a mobile?

    the hamburger menu is no where to be found?

    please help?

    #992692
    #993217

    Hi,

    The mobile menu is not displaying because of the following css code.

    #header_main > .container {
        display: none;
    }

    Please remove that css code. If it doesn’t work, set the account user role to admin so that we can check the settings.

    Best regards,
    Ismael

    #993389

    Ismael,

    thanks that has made the hamburger menu return to the top right hand corner in mobile mode.

    I need the hamburger menu to stay on the left hand side as per desktop. It should have the same position on both mobile and desktop please?

    see live example now

    #993786

    where is the breakpoint code for the desktop version of the hamburger, if I can reset this I should be fine!

    #993817

    Hi,

    Thanks for the update.

    Use this css code to move the burger menu to the left.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
    }
    }

    Best regards,
    Ismael

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