Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #342626

    Hi,

    In the following site: http://thinkdif.co.il
    the menu is over lapping the logo on mobile devices.

    this appears after the last upgrade to Enfold 3.0

    I tried this:
    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 85%;
    height: auto !important;
    margin-left: 0!important;
    }}

    but the logo on my client site is positioned on the right…

    Thanks
    Tal

    • This topic was modified 10 years ago by talelie.
    #342925

    Shalom!

    Please add following code to Quick CSS

    #advanced_menu_toggle, #advanced_menu_hide { right: auto; left: 0; }

    Cheers!
    Yigit

    #343307

    Hi Yigit,

    Thanks, another question: is there a possible to position the logo on the left, only for mobile devices?
    logo on left, menu on the right?

    the website is in Hebrew, therefore the logo for desktop is on the right side.

    Thanks
    Tal

    #343672

    Hi!

    Yes, please add folowing code to Quick CSS

    @media only screen and (max-width: 990px) {
    .html_header_top #top .av_logo_right .logo {
    left: 0;
    right: auto;
    }}

    Best regards,
    Yigit

    #344820

    Hi Yigit,

    Didn’t work… the logo still on the right and the menu button on top of it.
    How can I move the logo to the left on mobile only?

    #345269

    Hi!

    Please add !important rule as following

    @media only screen and (max-width: 989px) and (min-width: 990px) {
    .responsive .logo {
    left: 0!important;
    right: auto!important;
    }}

    Cheers!
    Yigit

    #530391

    Hi Yigit,

    A website with the custom css as explained above, suddenly, the mobile menu cover the logo.
    the logo should be placed on the left and the menu on the right.

    the website is: http://thinkdif.co.il/

    Thanks
    Tal

    #530908

    Hi!

    Please add following code to Quick CSS

    @media only screen and (max-width: 769px) {
    .logo, .logo img {
        float: left!important;
    }}

    Cheers!
    Yigit

    #531363

    Thanks! works just great.

    #531390

    and if I need to change the logo to the right and the mobile-menu to the left?

    Thanks
    Tal

    #532544

    Hey!

    then use this code:

    @media only screen and (max-width: 767px) {
    a#advanced_menu_toggle {
    left: 10px;
    }
    .responsive #top .logo {
    float: right !important;
    margin-right: -185px !important;
    }}
    

    and adjust as needed.

    Regards,
    Andy

    #532767

    Oops, the logo gets on the menu. the logo moves to the right, but the menu did not move to the left.

    #533977

    Hi!

    then try to add an !important. Use this code instead:

    @media only screen and (max-width: 767px) {
    a#advanced_menu_toggle {
    left: 10px !important;
    }
    .responsive #top .logo {
    float: right !important;
    margin-right: -185px !important;
    }}
    

    Cheers!
    Andy

    #534009

    Works great!

    Thanks!

    #534081

    Hi!

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Regards,
    Andy

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘mobile menu overlap logo’ is closed to new replies.