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

    How to add text next to cart icon eg. “shop cart”

    i tried with
    ul #menu-item-shop a:after {
    content: ‘Shop cart’;
    font-size: 13px;
    }

    but that is not working

    #816959

    Hey Uroš,

    Try adding this to quick css instead:

    #menu-item-shop.cart_dropdown:before{
    content: "Shop cart";
    font-size: 13px;
    float:right;
    margin-left:-80px;
    margin-top:20px;
    position:absolute;
    }

    Best regards,
    Jordan Shannon

    #816964

    Thank you very much :)

    #816970

    Hi,

    No problem at all. If you need additional help, please be sure to begin a new thread and let us know here in the forums.

    Best regards,
    Jordan Shannon

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