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
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 |
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 {
to
1 body { |
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 {
to
1 body {
|