Quote:
Originally Posted by Wayne Luke
|
The forum icons can be list in a table so it will look better. If we matte with the background in alternating colors later the forum icon list will not look good because the page background is dark.
what you can do is
goto:
Style Manager>blacknight>edit templates>Forumhome Templates> FORUMHOME>
scroll down.
Replace the coded in between this comment tag
<!-- icons and login code --> with below:
Quote:
<!-- icons and login code -->
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr valign="bottom">
<td>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr class="alt1">
<td class="alt2"><div align="center"><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></div></td>
<td class="smallfont"> $vbphrase[forum_contains_new_posts]</td>
<td class="alt2"><div align="center"><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></div></td>
<td class="smallfont"> $vbphrase[forum_contains_no_new_posts]</td>
<td class="alt2"><div align="center"><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></div></td>
<td class="smallfont"> $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</table>
</td></tr><tr align="right">
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->
|
you can change the table width that suits you.