Try to change
|
Code:
|
if ($username == "Anonymous") {
$theuser = "&&<a href=\"modules.php?name=Your_Account&op=new_user\">Create an account";
} else {
$theuser = "&&Welcome $username!";
} |
to this
|
Code:
|
if ($username == "Anonymous") {
$theuser = "&&<a href=\"modules.php?name=Your_Account&op=new_user\"><span class="block-title">Create an account</span>";
} else {
$theuser = "<span class="block-title">&&Welcome $username!</span>";
} |
I'm not sure if that'll work, you can also try to change this
|
Code:
|
<span class="block-title"> |
to this
|
Code:
|
span color="333333"> |
Hope this helps, I didn't test anything of it so it's just a guess