Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
352 views
in Themes by
Please let me know what css section defines tags. I would like to add borders to tags.
Q2A version: latest

1 Answer

+1 vote
by
selected by
 
Best answer

Tags have the class .qa-tag-link. So to add a border you'd do something like

.qa-tag-link {
    border: 1px solid #000;
}

 

by
It worked. Thanks Scott.
...