Site logo

[Support request] Menu Bar Icon Not Showing

Home Forums Support [Support request] Menu Bar Icon Not Showing

Home Forums Support Menu Bar Icon Not Showing

Viewing 7 posts - 16 through 22 (of 22 total)
  • Author
    Posts
  • #2553987
    David
    Staff
    Customer Support

    Try this CSS to switch the order:

    .main-navigation .menu-bar-items {
        flex-direction: row-reverse;
    }
    #2554374
    huppap

    This is perfect Dave, only thing left is to move search icon to left right by the off convas menu toggle.

    Could we do that?

    #2554550
    Ying
    Staff
    Customer Support

    Hi Sumit,

    Try this:

    @media(max-width:768px){
    .main-navigation .menu-bar-items {
        width: calc(100% - 55px);
        justify-content: space-between;
    }
    
    .main-navigation .menu-bar-item.search-item {
        margin-right: auto;
    }
    }
    #2554811
    huppap

    Thanks, this worked. I see that “X” mark to close the search box is in the middle of things, could you help me move it to the far right please?

    Thank you so much.

    #2555215
    David
    Staff
    Customer Support

    Try this:

    #mobile-header .navigation-search input[type="search"] {
        padding-right: 50px;
    }
    .main-navigation .menu-bar-item.search-item.close-search {
        position: absolute;
        right: 15px;
    }
    #2555286
    huppap

    this is perfect, thank you so much you guys are awesome.

    #2556147
    David
    Staff
    Customer Support

    Glad we could be of help

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