CSS Help

Open: /styles/buziness_board/theme/colours.css

Find:
Code:
.content {
	color: #333333;
}

Change the hexadecimal value for one you'd prefer. If you're not sure this chart should help you.

Once you've made the change, you may be required to refresh your forum's stylesheet depending on your configuration.
 
uhmm I am no expert with CSS,but for body color wouldn't it be under
.body {
background-color: #003300
text-color: #003355
}
(I am not expert so excuse me if I am incorrect)
 
NBK*Twitch said:
uhmm I am no expert with CSS,but for body color wouldn't it be under
.body {
background-color: #003300
text-color: #003355
}
(I am not expert so excuse me if I am incorrect)

Multiple mistakes in your CSS code.

Firstly you wouldn't get .body { as that shows Body as a DIV class whereas Body is actually a Type selector.
Secondly, the text-color: property doesn't exist in CSS, instead just color: is used to define the text colour of a property. Finally, using color: within the body CSS element would change the text colour for everything on the page. The code I gave only changes it for the content of the post, as requested in the original topic :great:
 
Back
Top Bottom