where do I change text colors withing the site common.css general.css?

hey guys im looking to chage the text color on the blog and articles also the general profil text..

i tied to use firefox firebug but i when i clicked inspect element i honestly said wtf because i cant understand it.

 

thanks in advance

Quote · 17 Jan 2012

You'll find the file here: /templates/base/css/common.css - or /templates/<your template>/css/common.css (you should only edit your template files b/c you'll lose changes w/ updates if you do it in the base). At line 4 you'll see the body text color setting. This affects the body text on all of the pages and all of the modules. For example, if you wanted to change it from the default to a burgundy color, you'd change:

 

1 body {
2    font-family:Verdana,Arial;
3    font-size:11px;
4    color:#333333;
5    background-color:#ffffff;

 

to

 

1 body {
2    font-family:Verdana,Arial;
3    font-size:11px;
4    color:#5a0002;
5    background-color:#ffffff;

Quote · 20 Jan 2012

 Thank you so so so much.

You'll find the file here: /templates/base/css/common.css - or /templates/<your template>/css/common.css (you should only edit your template files b/c you'll lose changes w/ updates if you do it in the base). At line 4 you'll see the body text color setting. This affects the body text on all of the pages and all of the modules. For example, if you wanted to change it from the default to a burgundy color, you'd change:

 

1 body {
2    font-family:Verdana,Arial;
3    font-size:11px;
4    color:#333333;
5    background-color:#ffffff;

 

to

 

1 body {
2    font-family:Verdana,Arial;
3    font-size:11px;
4    color:#5a0002;
5    background-color:#ffffff;

 

Quote · 21 Jan 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.