Archived topic
text next to cart icon
8 replies · Started by johnaps on October 9, 2019
Viewing posts 1–9 of 9
Hello,
Is it possible to add "text" to the right of my cart icon?
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;
}
Perfect!
Thank you very much!!
Resolved!
You're welcome
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...
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;
}
PERFECT!
Thank you 9000!
You're welcome
This archived topic is closed to new replies.