PDA

View Full Version : Simple Move Help



Scooterpig
Tue 4th Sep '07, 7:40am
Just wondering please if anyone can help with a template edit for me to move some wording?

I want to move the 3 comments at the bottom of ForumHome into 1 single line instead of the three that they are in now. I don't want it surrounded by any box or other lines, just moved to the 1 line and in line with forum. I know the template is ForumHome.

I know it's possible but not sure how to do it if anyone can help me out please.

Thank you..:)

kiwilerner
Wed 5th Sep '07, 12:31am
No prob. Open FORUMHOME template and look for:


<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>

Replace with:


<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>
<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>
<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>

Save and enjoy. :)

Scooterpig
Wed 5th Sep '07, 6:23am
Absolute champion, have been trying all day and ya did it for me, thank you very much mate, appreciate the help..:)