I wish to do the following changes to the board:
Boards back ground color to black
Font size
How and where do I proceed?
How do I do these changes
Re: How do I do these changes
Helle Methen,
In style.css file change to
}
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
In style.css file change
Code: Select all
BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
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
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.