PDA

View Full Version : help please


kottemann
10-15-2008, 08:07 AM
Hi Guys I am slowly getting the hang of things and will hopefully be asking less dumb questions as time goes by :)

But in the meantime I was wondering if anyone could help me I want to remove the forum conatins new posts icon and the forum coantains no new posts and the log out option and bring the recent thread module underneath up closer to the whats going on module. As always any help is greatly appreciated.

ChaosBurnt
10-15-2008, 01:09 PM
That's handled with 'FORUMHOME'

This is the code to look for:
<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<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>
<if condition="$vboptions['showlocks']">
<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>
</if>
</table>
</td>
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->

kottemann
10-15-2008, 02:14 PM
Cheers Chaos that worked a treat many thanks.

ChaosBurnt
10-15-2008, 02:19 PM
Cheers Chaos that worked a treat many thanks.

Very welcome ;)