Menu overlap with members icon, shop cart and currency icons

Hi, how do I make sure the menu doesn't overlap with these icons in desktop and in mobile it overlaps with the logo.


Comments

  • This is for mobile

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us the link.

    Thanks

  • www.mybiogenie.co.uk

  • 1) Your desktop display has too many menu items, and they overlap the top bar right.

    There serval things you can do:

    • get rid of some of the menu items and/or shorten their texts
    • change your header style from Stack | Center to Stack | Left
    • write a custom CSS that will move your menu to the left on the resolution where the display breaks

    The mobile display will be fixed in the future update, but I cannot tell you when exactly it will be released.

    2) For now, you can hide some of the elementes with the custom CSS code placed in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    @media only screen and (max-width: 767px) {
       .top_bar_right #myaccount_button,
       .top-bar-right #wishlist_button,
     .top-bar-right-icon .header-cart-total{
          display: none!important;
       }
    }
    

    Thanks

  • Hello thanks for fixing that in the mobile.

    I have few issues, now in the mobile when you click on the menu, then member icon, the form is not shwing properly.


    What custom CSS can I use to make the menu move to the left in desktop?

  • edited September 2021

    1) We are aware of an issue with an incorrect login display, and we are working to fix it.

    For now you can use the following code:

    @media only screen and (max-width: 767px){
       #Top_bar .top_bar_right .mfn-header-login.woocommerce{
          right: unset!important;
          left: 150px!important;
          width: 170px!important;
       }
    }
    

    2) For moving the menu to the left on the desktop, please, use the following code:

    @media only screen and (max-width: 1500px) and (min-width: 1240px){
       #Header #Top_bar .menu_wrapper{
          margin-right: 120px!important;
       }
    }
    

    Thanks

  • That looks like it fixed it. Many thanks

Sign In or Register to comment.