New Landing How can we help? Themeforest Theme Support Uplift Hide the "CART 0" icon from slide-out menu on mobile devices

Viewing 6 posts - 1 through 6 (of 6 total)
  • Posted in: Uplift
  • #324822
    Dev23847
    Member
    Post count: 124

    Hi,

    Is there a way to hide the “CART (0)” icon in mobile slide-out list? We tried the following but then cart contents did not show when clicking cart icon in mobile header:

    @media screen and ( max-width: 1024px ) {
    li.parent.shopping-bag-item {
    display: none;
    }
    }

    Thank you.

    #324832
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Add the code below to your custom css.

    
    #mobile-menu ul li.shopping-bag-item {
        display: none;
    }

    -Rui

    #324837
    Dev23847
    Member
    Post count: 124

    genius, thanks! While we’re at it, any way to put “SIGN UP” & “LOGIN” on the same line in mobile slide-out panel?

    *current setup*:

    LOGIN
    _______________

    SIGN UP

    *desired setup*:

    LOGIN | SIGNUP

    … or even to have a “My Account” icon next to or above cart icon on mobile

    #324988
    David Martin – Support
    Moderator
    Post count: 20834

    To force the items onto the same line, you could test this:

    ul.alt-mobile-menu li {
        float: left;
        clear: none;
        width: 50% !important;
    }
    #324989
    Dev23847
    Member
    Post count: 124
    This reply has been marked as private.
    #324991
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    No problem. Thanks David.

    -Rui

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.