Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #453217

    Hello, I created a submenu full width. I need to control the space letter this menu. How do I do this? Leave must also bold in some menu items.

    http://www.milk9.com.br/qlrweb2/elements-image/

    #453362

    I saw another problem. The menu is fixed on the desktop and rises along with the page on mobile. It has to be fixed also in mobile.

    The behavior must be the same as on the desktop.

    #453940

    Hey!

    Your trying to limit the width so you can fit the whole alphabet on line line correct? Try adding this to your custom CSS.

    #top .av-subnav-menu > li > a { padding: 0px 5px !important; }
    

    To give it a fixed position on mobiles try adding this.

    @media screen and (max-width: 767px) {
    .responsive #top .av-submenu-container { position: fixed !important; top: 0px !important; }
    }

    Regards,
    Elliott

    #454121

    Thanks Elliott.

    Ok, it worked on mobile.

    It created a very large line break the list of items. How to control this spacing?

    #454657

    Hey!

    You could reduce the padding a bit more. Try 2px.

    #top .av-subnav-menu > li > a { padding: 0px 2px !important; }
    

    Best regards,
    Elliott

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