Changing the font color for the standard text

I have looked through various css pages and I cannot seem to change the main general font color for text -- it shows as a greyish color and I want to change it to pure black, or at least a little darker.Im using 1.5.1.0

Thanks

1 answer

Profile photo of Phill Luckhurst 0.00 $tone April 27, 2011
Public

For the main text (article descriptions etc) please open skin/frontend/default/jm_adamite/css/theme.css and around line 4 change

Code:

body {
    color: #757575;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1.6;


}

to

Code:

body {
    color: #000000;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1.6;


}

There may be other items you wish to change to black as not all the text is controlled by that piece of css. Best bet is to use a tool such as firebug for the firefox browser to work out what needs changing.

#1

This question is now closed

Written By

Comments