[Resolved] Center Logo on Mobile for a woocommerce store

Home Forums Support [Resolved] Center Logo on Mobile for a woocommerce store

Home Forums Support Center Logo on Mobile for a woocommerce store

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2340362
    FunkyCss

    Hi there,

    I would like to use my logo on center on mobile left the menu and right the cart, like most woo stores for mobile.

    There is any way I can do this for my website ?

    I have tried mobile header but does not has this kind of option.

    #2340516
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    @media(max-width: 768px) {
        #mobile-header.main-navigation .menu-toggle {
            order: -1;
            margin-right: auto;
        }
    
        #mobile-header.main-navigation .mobile-header-logo {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    #2340518
    FunkyCss

    Works like a charm!

    Thank you so much!

    #2340533
    David
    Staff
    Customer Support

    Glad to hear that!!

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