Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
592 views
in Q2A Core by

I have added several categories to the top bar and like to change the colours of those tabs. Please help me to do this change.

Like "HOT!"  on the Top-Bar

Q2A version: 1.6.3

1 Answer

+2 votes
by
selected by
 
Best answer

In your theme, I'm using Snow, go to the qa-styles.css file and find the section for qa-nav-main. In Snow it's around line 461. Create a new rule:

.qa-nav-main-custom a{

color:#a80000 !important;

}

Just replace the word "custom" with the URL fragment of the page you created. 

by
Thank you very much for this answer. Please tell me does ".#a80000" represent the colour?
Does the URL fragment mean "/name"?.
by
Yes. #a80000 is the HTML color code for that particular shade of red. If you Google "HTML color picker" you'll find a few easy to use websites that will give you the color code for whichever color you want. The URL fragment is just the "name" part of "/name". When you create or edit a page in the Admin panel, there's a field that says "URL fragment". Get it from there.
by
Thank you again. I got it.
...