Trying to use css to insert png icons in tag boxes

You can use css attribute selector

Here is an example with the tag question :

a.discourse-tag.box[href*="question"]::before {

With 400 tags you might need to use something else than the [href*= for some elements. There are a few alternatives to trigger the attribute element.

https://www.w3schools.com/css/css_attribute_selectors.asp

4 Likes