can anyone help me? I would like to change the color of the main text of my wiki. can someone point me to th right place in the css to do this? thankz, Kenn, th css rookie.
For the text of the body, find a section start with “body” followed by key value pairs in braces. Like this:
body {
key: value;
key: value;
}Then change it. The keys you are looking for are “color” and “background-color”. So you want to find the old settings, and replace them with something new:
body {
background-color: #FFF;
color: #000;
}Instead of using hexadecimals (one for red, green, and blue) such as #FFF (white) and #000 (black), you can use one of aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. [1] – AlexSchroeder