Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
Mystikel
Mystikel
I want to change the color of the text in my forum (same text as you're reading now :D) from black to white, but can't find where to change it.. I've looked all through the css and can't find it. I'm customizing the silver-dark template.
Any help with this would be much appreciated. :D
 
Ches (Guest)
Ches (Guest)
Just find
element.style {
color:black;
and change it
 
 
http://forum.viarts.ru
 
digger69 (Guest)
digger69 (Guest)
To change the forum text to white:
 
Look for in common_functions.php:
 
$level_colors = array(
"0"=>"black", "1"=>"blue", "2"=>"red", "3"=>"green", "4"=>"gray", "5"=>"navy", "6"=>"olive", "7"=>"brown", "8"=>"purple"
 
Chang to:
 
$level_colors = array(
"0"=>"black", "1"=>"blue", "2"=>"red", "3"=>"green", "4"=>"gray", "5"=>"navy", "6"=>"olive", "7"=>"brown", "8"=>"purple", "9"=>"white"
 
Then look for:
 
$message .= "<div style='color:".$level_colors[0].";'>";
 
Change to:
 
$message .= "<div style='color:".$level_colors[9].";'>";
 
Obviously make sure you make a back up before edit!!
 
digger69 (Guest)
digger69 (Guest)
If somebody could tell me how to change the font size it would be much appreciated.
 
digger69 (Guest)
digger69 (Guest)
EDIT: How to attach the forum text to the CSS would be even better. Broad grin