Hey, can you post a link?
Hannah
Hey,
here is the link: http://bild-im-rahmen.com/.
mic
I don’t see your count? can you clear the cache on your site?
Kadence Themes
Sorry, now I have cleared the cache and you should see the counts.
add this css:
.sidebar .product-categories li span.count {
position: absolute;
left: 0;
top: 5px;
}
.sidebar .product-categories li {
position: relative;
padding-left: 10px;
}
Kadence Themes
Thank you very much!
Your code results in placing the count in front of the category name. I want it the other way round.
To achieve this I did it this way:
.sidebar .product-categories li span.count {
position: absolute;
left: 100px;
top: 5px;
}
.sidebar .product-categories li {
position: relative;
padding-left: 0px;
}
sorry misunderstood. Glad you got it.
Kadence Themes