[ad_1]
Replies: 2
Hi all, I know how to remove the icons next to post tags and categories with the following:
.tags-links:before, .cat-links:before {
display: none;
}However, I would like to replace them with text. I tried adding the following but it doesn’t display anything (with the previous display: none; CSS removed):
.cat-links:before {
content: "Category: ";
}
.tags-links:before {
content: "Tagged: ";
}Many thanks
