Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
675 views
in Themes by
I would like to reduce the size of the font of categories in the right side of the main page below the search tool. I tiried to hack the qa-styles.css, but I was not able to find the correct place.

I am using snow flat theme!
Q2A version: 1.7.0

1 Answer

+3 votes
by
selected by
 
Best answer

You'll have to add a new CSS class to qa-theme/SnowFlat/qa-styles.css:

a.qa-nav-cat-link {
    font-size: 125%;
}


And change the font size of the note like this (this class already exists):

.qa-nav-cat-note {
    color: #7f8c8d;
    float: right;
    font-size: 125%;
}

by
Thank you! This is exactly the solution, but I needed is font-size: 90%; . I think I was not clear. The problem was that my categories were too big for the "padding".
...