we'd like to change the color used for content from the light black/gray to 100% black, but don't see where it's possible to do this. Can you shed some light on this Noob issue?

thanks

Comments

NaheemSays’s picture

Status: Active » Needs review

Untested, but you can try this:

Create a new file in the theme folder and call it "local.css"

in there put the following code:

*/
 * Change text colour to black
 */

body {
  color:#000000;
}
jaseem’s picture

Issue tags: +bugfix theme color change

The theme can be edited in anyway by just editing the style.css file along with it.Even if you dont know CSS , you will understand it when you go through the file because the language is really simple. for eg , find something like this ,

h1, h2, h3, h4 {
	color:#3c78a7;
}

edit it to

h1, h2, h3, h4 {
	color:#000000;
}

to make all headings completely black. find the element block which you want to change , then just replace the color code. your problem must get solved with this.

christoph_webber’s picture

I appreciate the feedback. sorry for the delay in getting back to you....understaffed and overworked :-)

apaderno’s picture

Issue summary: View changes
Status: Needs review » Closed (outdated)
Issue tags: -bugfix theme color change

I am closing this issue, as Drupal 6 is no longer supported.