PDA

View Full Version : Table around Icon Legend?


Bluehemp123
04-27-2007, 08:08 PM
I liked this mod for 2.x.x but I can't seem to find it for 3.x.x

I have searched for it, but I always get results I don't want. Every single time.

Anyways, can anyone point me to the edit to do this? Especially the one that has them centered.

Thanks!

CyberAlien
04-27-2007, 08:28 PM
forumhome and forumdisplay templates

Bluehemp123
04-27-2007, 08:36 PM
I was looking for an actual template edit that someone has done. Thanks though.

CyberAlien
04-27-2007, 08:43 PM
in forumhome edit this code: <table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>

apply some style to that table, for example <table cellpadding="2" cellspacing="0" style="border: solid 1px #CCC; background-color: #FFF;">

and in forumdisplay do the same to this table: <table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>

Bluehemp123
04-28-2007, 12:22 PM
That doesn't seem to work for me. It make a table around them, but not the slim table with them all side by side, centered in the middle of the forum. Appreciate your help so far.