PDA

View Full Version : Birthdays Module


Rob Locke
09-18-2005, 01:50 PM
A quick question...as there is no template for the birthdays module, how would I go about making the usernames and ages appear in the "smallfont" css style?

Brian
09-18-2005, 03:54 PM
Open your modules/birthdays.php file and find:
$home["$mods[modid]"]['content'] = iif($birthdays, str_replace(array('member.php', ','), array($vboptions['bburl'] . '/member.php', '<br />'), $birthdays), $vbphrase['none']);

Replace with:
$home["$mods[modid]"]['content'] = '<span class="smallfont">' . iif($birthdays, str_replace(array('member.php', ','), array($vboptions['bburl'] . '/member.php', '<br />'), $birthdays), $vbphrase['none']) . '</span>';

Our Sponsors
 

Rob Locke
09-19-2005, 11:15 AM
Thanks Brian, you are a gem!

gregsbaby64
09-20-2005, 07:19 AM
Could I also add an image?