PDA

View Full Version : way to line these up?


zero5854
11-30-2008, 08:41 PM
Hi I was wondering where I can edit these 3 to be on one line next to each other instead of being in one column I would want them in a row going across

Anyone know where to edit this?

thanks

Lynne
11-30-2008, 09:04 PM
Do this - vboptions > General Settings > Add Template Name in HTML Comments > set to Yes . Then go back to your page and view the source code and you will see the name of the template called around your part of the code. Then go into the template and edit it.

zero5854
11-30-2008, 10:42 PM
ok I found out where the code is so how to align them?

heres the code
<!-- icons and login code -->
<table border="0" cellpadding="0" cellspacing="2" width="100%">
<tbody><tr valign="bottom">
<td>

<table border="0" cellpadding="2" cellspacing="0">
<tbody><tr>
<td><img title="Contains New Posts" src="images/hotblue/statusicon/forum_new.gif" alt="Contains New Posts" border="0"></td>
<td class="smallfont">&nbsp; Forum Contains New Posts</td>
</tr>
<tr>
<td><img title="Contains No New Posts" src="images/hotblue/statusicon/forum_old.gif" alt="Contains No New Posts" border="0"></td>
<td class="smallfont">&nbsp; Forum Contains No New Posts</td>

</tr>

<tr>
<td><img title="A Closed Forum" src="images/hotblue/statusicon/forum_old_lock.gif" alt="A Closed Forum" border="0"></td>
<td class="smallfont">&nbsp; Forum is Closed for Posting</td>
</tr>

</tbody></table>
</td>

Lynne
11-30-2008, 11:20 PM
Right now you have them in three rows in a table:
<table>
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>

You need to change it to one row with three columns:
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>

zero5854
11-30-2008, 11:35 PM
ohhhh ok so thats what the TR was working great now thanks alot!!!!!!!! :D:D

Aclikyano
12-01-2008, 12:56 AM
i removed that whole icons n login code from my forum, looks cleaner @ bottom of index :D