Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
413 views
in Q2A Core by
I want to add background and transition effect to no of views count but i am not sure where shall I start from.
Q2A version: 1.7.4

1 Answer

+1 vote
by
selected by
 
Best answer
You need to edit the .qa-view-count class. Look for that in the qa-styles.css file in your theme. Then add something like "background: #ccc;" to the property list.

Not sure exactly what/how you want to transition but you'd add for example "transition: background 0.5s;" to .qa-view-count and then put a new background on .qa-view-count:hover if you wanted transition on hover.
...