Tagged: 

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

    Hi,

    Im using Enfold on my website but have a problem on smaller screens for example ipads. The menu is overlapping the logo. I have tried to set the header – mobile menu – browser width below 990px and tried different settings but it doesnt work. What can I do?

    Best regards
    Charlotte

    #498890

    Hi Kloeppelweb!

    Add this to your custom CSS.

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

    Regards,
    Elliott

    #498927

    Hi thank you for your mail. that didnt solve the problem?
    Still the same!

    #499098

    Hi,

    Please try the following instead:

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

    Best regards,
    Rikard

    #502173

    Hi,

    I tried this and that also works by creating
    a mobile menu on iPads instead which is fine except for the fact that it’s not possible to open the mobile menu when using the ipad horizental. It only gives the user the opportunity to click on close button…

    #502268

    Hey,

    Sorry about that, please try the following instead:

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

    Thanks,
    Rikard

    • This reply was modified 9 years, 2 months ago by Rikard.
    #505823

    This worked great for me only it’s a bit cramped up top. What can I do to nudge down my slider a bit?

    #506201

    Hey,

    Not sure if you want it on all screen sizes or not, but you can try this in Quick CSS:

    #layer_slider_1 {
    padding-top:60px !important;
    }
    

    Regards,
    Rikard

    #506531

    Hi there, no it’s only an issue for Ipads. Fine everywhere else.

    #506639

    Hi!

    You can change the code to following one to target tablets only

    @media only screen and (max-width: 1024px) and (min-width: 769px) {
    #layer_slider_1 {
    padding-top:60px !important;
    }}

    Regards,
    Yigit

    #506647

    Perfect, thanks so much!

    #506662

    Hi!

    You are welcome, glad we could help!
    We will keep the thread open for the OP. If you have any other questions or issues, please start a new thread :)

    Regards,
    Yigit

    #506673

    Oh darn it, I spoke too soon!

    It’s still WAY up here on the Ipad?

    http://quirktools.com/screenfly/#u=http%3A//birdingtrail.staging.wpengine.com/&w=768&h=1024&a=22&s=1 (hosted on WPengine)

    and no matter what I change the pixels to, it still stays that same spot?

    #506679

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 990px) and (min-width: 767px) {
    #layerslider_3_1 {
        padding-top: 100px;
    }}

    Regards,
    Yigit

    #506693

    Thank you! I’m for sure done now :)

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Menu overlapping the logo on smaller screens and ipads’ is closed to new replies.