PDA

View Full Version : Bolded subforums on new post


UberMensch
01-31-2008, 11:34 PM
On the forumhome, I'd like to have the subforum's name in bold if there's a new post (as I don't want to use the status icons). How could I achieve this?

Triky
02-01-2008, 10:47 AM
Go to:

Admin CP -> Styles & Templates -> Style Manager -> ? ? -> Forum Home Templates -> forumhome_subforumbit_post

andAdmin CP -> Styles & Templates -> Style Manager -> ? ? -> Forum Home Templates -> forumhome_subforumbit_nopost

Change this:
<img class="inlineimg" src="$stylevar[imgdir_statusicon]/subforum_$forum[statusicon].gif" alt="" /> <a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>To:

<img class="inlineimg" src="$stylevar[imgdir_statusicon]/subforum_$forum[statusicon].gif" alt="" /> <a <if condition="$forum[statusicon] == 'new'">style="font-weight: bold;"</if> href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>

UberMensch
02-01-2008, 05:16 PM
Thank you kind sir ;)