[Resolved] Mobile menu

Home Forums Support [Resolved] Mobile menu

Home Forums Support Mobile menu

Viewing 15 posts - 16 through 30 (of 30 total)
  • Author
    Posts
  • #840246
    Tom
    Lead Developer
    Lead Developer

    Can you re-add the code so I can see?

    #840249
    Pedro

    Hello Tom!

    I added the code again

    #840268
    Tom
    Lead Developer
    Lead Developer

    To remove the 0, add this CSS:

    .number-of-items.no-items {
        display: none;
    }

    Do you just want the search and cart to switch places?

    #840271
    Pedro

    Hello Tom!

    Yes, what I want is for icons to be displayed as default: Search / Cart

    Thank you!

    #840701
    David
    Staff
    Customer Support

    Try:

    @media (max-width: 768px) {
        .inside-navigation {
            display: flex;
        }
    
        .main-navigation .menu-toggle {
            order: -1;
            margin-right: auto;
        }
    }
    .main-navigation li.search-item {
        float: left;
    }
    
    #840703
    Pedro

    Hello David! It worked but only for the mobile version.

    #840712
    David
    Staff
    Customer Support

    Edited above to include desktop

    #840721
    Pedro

    Hello david!

    It worked very well Thank you!!

    #840741
    David
    Staff
    Customer Support

    You’re welcome

    #840907
    Pedro

    Hello David!

    I just realized that this CSS code affects the menu display in the mobile version.

    I send you a screenshot so you can see: https://www.dropbox.com/s/gnwvjwytypuggpi/IMG_2321.PNG?dl=0

    #841095
    Tom
    Lead Developer
    Lead Developer

    Did you remove the search for now? Any chance you can add it back? I should be able to fix the above.

    Let me know ๐Ÿ™‚

    #841738
    Pedro

    Hello Tom!

    I have already activated the search icon.

    I’m waiting for your message.

    #842049
    David
    Staff
    Customer Support

    Try this:

    @media (min-width: 769px) {
        .main-navigation li.search-item {
            float: left !important;
        }
    }
    @media (max-width: 768px) {
        .inside-navigation {
            display: flex;
            flex-wrap: wrap;
        }
    
        .main-navigation .menu-toggle {
            order: -1;
            margin-right: auto;
        }
        .main-nav {
            flex: 1 0 100%;
        }
    }
    #842074
    Pedro

    Hello david! I give this ticket as resolved. Thank you!

    #842083
    David
    Staff
    Customer Support

    Awesome – glad we got there ๐Ÿ™‚ i had to refuel with coffee lol

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