[Resolved] text next to cart icon

Home Forums Support [Resolved] text next to cart icon

Home Forums Support text next to cart icon

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1030062
    johnaps

    Hello,

    Is it possible to add “text” to the right of my cart icon?

    #1030097
    David
    Staff
    Customer Support

    Hi there,

    for the GP cart icon you could use this CSS:

    .wc-menu-item .cart-contents:after {
        content: 'text after cart';
        margin-left: 10px;
    }
    #1030401
    johnaps

    Perfect!

    Thank you very much!!

    #1030404
    johnaps

    Resolved!

    #1030413
    David
    Staff
    Customer Support

    You’re welcome

    #1032028
    johnaps

    Hello again can you tell me how to move text to the bottom off the cart icon? Cause it appears next to my logo alright but its on the upper side, and i am trying to move it down and i cant…

    #1032036
    David
    Staff
    Customer Support

    Update the CSS to this:

    .wc-menu-item .cart-contents:after {
        content: 'text after cart';
        margin-left: 8px;
        position: absolute;
        left: -0.5em;
        bottom: -1em;
    }
    #1032195
    johnaps

    PERFECT!
    Thank you 9000!

    #1032431
    David
    Staff
    Customer Support

    You’re welcome

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