Thread: Header Problem
View Single Post
  #2 (permalink)  
Old 04-25-2003, 03:11 PM
Mighty_Y Mighty_Y is offline
Moderator
 
Join Date: Nov 2002
Location: Belgium
Posts: 957
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
__________________
Yannick R. aka Mighty_Y
http://support.code-area51.com
http://www.code-area51.com

Search before asking makes my life easier!
Reply With Quote