Page 1 of 1
How do I do these changes
Posted: Tue Mar 23, 2010 5:26 pm
by Methen
I wish to do the following changes to the board:
Boards back ground color to black
Font size
How and where do I proceed?
Re: How do I do these changes
Posted: Tue Mar 23, 2010 7:34 pm
by Henrie
Helle Methen,
In style.css file change
Code: Select all
BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
to
Code: Select all
BODY, TD {
background-color : black;
color : yellow;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}
Also in all other parts change
color: black; to
color: yellow; (this is the text color)
font-size: ??px; where value ?? is a numeric value of the desired text size in pixels (px)
Just try and see what is changed when you change the value.
Greetings,
Henrie