Infamous cTz Posted June 15, 2010 Posted June 15, 2010 im sure this is really simple... but how do change the link color for NEW events and mail only to stand out better ?( Quote
Jordan Palmer Posted June 15, 2010 Posted June 15, 2010 In the header I think isn't it? Just look for it.. Quote
Djkanna Posted June 17, 2010 Posted June 17, 2010 mainmenu.php find mailbox and events and add <span style="color: colourhere;">mailbox stuff</span> Quote
Jordan Palmer Posted June 17, 2010 Posted June 17, 2010 mainmenu.php find mailbox and events and add mailbox stuff I don't think it's called MainMenu in GRPG? but yeah Quote
Djkanna Posted June 17, 2010 Posted June 17, 2010 Oh fluff didn't notice it was the the GRPG board, anyway same concept and I think it's just menu.php (not sure) then. Quote
Jordan Palmer Posted June 17, 2010 Posted June 17, 2010 It's in header, You need to change the colour in the CSS (Not sure which variable though as I'm not a big user off it) Quote
acer240 Posted June 20, 2010 Posted June 20, 2010 $checkmail = mysql_query("SELECT * FROM `pms` WHERE `to`='$user_class->id' and `viewed`='1' AND `delete`='0'"); $nummsgs = mysql_num_rows($checkmail); if($nummsgs > 0) { $mail = "[<font color='#cc0000'>".$nummsgs."</font>]"; } else {$mail = "[".$nummsgs."]"; } ^ just find this near top of header.php And change $mail = "[<font color='#cc0000'>".$nummsgs."</font>] to include colour,bold, etc Quote
Dave Posted June 20, 2010 Posted June 20, 2010 $checkmail = mysql_query("SELECT * FROM `pms` WHERE `to`='$user_class->id' and `viewed`='1' AND `delete`='0'"); $nummsgs = mysql_num_rows($checkmail); if($nummsgs > 0) { $mail = "[<font color='#cc0000'>".$nummsgs."</font>]"; } else {$mail = "[".$nummsgs."]"; } ^ just find this near top of header.php And change $mail = "[<font color='#cc0000'>".$nummsgs."</font>] to include colour,bold, etc Should probably do > $mail = "[b][<span style="color:red;">".$nummsgs."</span>][/b] If I remember my xHTML :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.