Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
558 views
in Q2A Core by
I dont understand why next to each tag is icon, how to do that all question tags have one tag icon.
by
Can you post a screenshot of your problem? I don't understand.
by
I am using featured image for some tags only in my theme thanks to gidgreen i implemented it to my css. It would be great if you can post a screenshot as DisgruntledGoat said

1 Answer

+1 vote
by
I'm not sure exactly what you're looking for, but this can probably be changed in the CSS file of your theme.
by
edited by
As far as You are speaking about the Candy theme, You would have to add the nested class .qa-q-item-tag-item .qa-tag-link {} and to change .qa-q-item-tag-list {....}

Example:

Change this

.qa-q-item-tag-list {background:url(tag-icon.png) no-repeat left center;list-style:none; margin:0; padding-left:18px;}

Add this:

.qa-q-item-tag-item .qa-tag-link { background:transparent; padding-left:3px;}

Result looks like: http://www.puertovallarta.questions.com.mx/questions

Then You would have to do the same or similar with .qa-q-view-tag-list and .qa-q-view-tag-item to have it on the single question site the same way.

Regards
monk333
by
SOrryz i'm forgot to mention that this in candy theme, thanks monk333.
...