Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #901566

    Hi there,

    I’ve tried many different solutions presented in this forum. Still I can’t find a good/working way t have the mobile menu displayed on the left.

    So:

    – Logo centered (done)
    – Mobile menu on left side
    – Cart on right side (done)

    Can you have a look and advise me?

    Thanx!

    Ben

    #901950

    Hey Ben,

    Please try the following in Quick CSS under Enfold->General Styling to place the mobile menu on the left:

    @media only screen and (max-width: 767px) {
    nav.main_menu {
      left:0 !important;
    }
    }

    Best regards,
    Rikard

    #902001

    Thanx Rikard,

    That put the menu to the left. But also the cart icon, which I want ont the right :-)

    Another thing which is weird is when tapping on the logo there is no redirect to home page.. Any suggestions there?

    Chrs!

    #902659

    Hi BenWorx,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    
    @media only screen and (max-width: 767px) {
      .responsive #top #menu-item-shop.cart_dropdown {
          float: right;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #902803

    Thank you Victoria! That worked :-)

    The following issue is remaining:

    On Mobile: when tapping on the logo there is no redirect to the home-page.. Nothing happens.

    Any suggestions?

    Thanx!

    #903192

    Hi BenWorx,

    Use this code instead.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
      .responsive #top #menu-item-shop.cart_dropdown {
          float: right;
      }
      .responsive .logo img {
        z-index: 999;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #903333

    That is working great! Thanx!

    I have another question for desktop:

    I want to show the menu using the hamburger icon. But I also want to show the cart.This is blocked by the theme.

    How can I show the icon (on the left) ánd the cart icon (on the right) on desktop?

    Also the cart icon should be shown on mobile, this also seems disabled when using the hamburger icon on desktop.

    Thank you very much for your support!

    Ben

    #904464

    Hi,

    You would need to modify it so the icon cart to be visible at the menu.
    That would require some custom coding OR you a third party plugin that would add the cart to the menu maybe up there.

    Best regards,
    Basilis

    #904505

    Hi Basilis,

    Thank you for your reply.. To clarify:

    I do not want to show the cart in the menu. But I want to show the cart Icon in the header. As is normal in Enfold (screenshot)

    But the Icon does not show when I choose for the Hamburger Icon on desktop.

    Thank you!

    Ben

    #904885

    Hi BenWorx,

    Can you disable caching and minification for now?

    Best regards,
    Victoria

    #904971

    Done!

    #906038

    Hi,

    Thank you for the info.

    You can use the following css code to force the cart icon to display.

    .html_burger_menu_active .menu-item.cart_dropdown {
        display: block;
    }

    Best regards,
    Ismael

    #906118

    Hi Ismael,

    Thank you! Worked like a charm :-)

    Last issue pending for me is the following:
    On desktop I want the cart Icon to be on the right. Now it is floating on the left..

    Thanx again!

    Ben

    #906200

    Hi,

    Glad it worked. Please add the following css code.

    .html_header_top.html_main_nav_header #top .av_menu_left .main_menu {
        width: 100%;
    }

    Best regards,
    Ismael

    #906242

    Hi Ismael,

    That did not work..

    Maybe because I want the menu Icon to be left? And the cart Icon right?

    Cheers!

    #906639

    Hi,

    Thank you for the update. Please insert this additional css code.

    #menu-item-shop.cart_dropdown {
        float: right;
    }

    Best regards,
    Ismael

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