If you want to change color of text-element on your site, first of all, find its selector.
Then in Appearance > Theme Options > Code > Custom CSS put code like this:
1 2 3 |
p.my-text-class { color:red; } |
There are few ways to define a color.
To make text red you can use also:
1 2 3 |
p.my-text-class { color:rgb(255,0,0); } |
or
1 2 3 |
p.my-text-class { color:#FF0000; } |
All the ways are equally good to use.