Hank3rd:
I was hoping someone could tell me how I can change the red category font color to another color than the default red. What files do I need to edit?
Thanks
Go to where your template is installed, e.g.
/public_html/includes/templates/silverfish/
Select the CSS folder, which is
/public_html/includes/templates/silverfish/css
Then edit; stylesheet.css
If you have a control panel that allows you to edit the file, then you can open, edit and then save, otherwise, use FTP to download, edit, save and then re-upload to the same location.
If you are using e.g. cpanel;
click on the name "stylesheet.css" then on the right hand side, you will see the name of the file at the top in bold letters and a list of options below.
Select "Edit File"
Then search for the following in the file;
/*
sidebox links
*/
A.category-top
You can search for "A.category-top" using the search function on your browser, to "Find on this page". It's easier that way.
Then when you find this,
color: #FF0000 !important; edit to whatever color you want your font to be. (note that the color may be different from the one above "FF0000", but the "color:" option under "a.category-top" is the most important thing to look out for.
I hope you are familiar with CSS. Also edit whatever else you want to change under a.category.top. within the { } - curly brackets.
Other areas you will see are;
A.category-top:hover - for category hover styling
A.category-subs - for styling subcategories that appear in menu
A.category-products - for styling products
and so on.
Try out styling bit by bit if you are not familiar with CSS, then save, and check out the effect on the site.
My advice is that you save the original CSS file before styling anything, incase you make mistakes that you cannot reverse. Right click and "select all", then copy and paste everything into Wordpad (not Word, so as to avoid funny formatting tags being added in)
Save the file on your PC, and then go ahead to edit the CSS, making a note of changes you make so that you can easily reverse anything that you don't like.