maybe i can help out this one, in your header, depending which variable your using, $theuser or $username (sometimes i mix both) most cases $theuser, anyways, where ever you put the variable in your header.html just add a font class, example:
|
Code:
|
<font class="user1">$theuser</font> |
I named this class "user1" then in your style.css add a class "user1" example
|
Code:
|
.user1 {
FONT-WEIGHT: bold;
FONT-SIZE: 12px;
COLOR: #cccccc;
FONT-FAMILY: Tahoma;
LETTER-SPACING: 0px;
TEXT-DECORATION: none
} |
that should do it.