PDA

View Full Version : Need Help Arranging 3 Things on 1 Line


ZiRu$
11-17-2002, 04:04 AM
See the picture? I want all 3 of them on the same line. This is my POSTBIT where the message is displayed....very top line!

On the left i want the post Counter, Center i want time and date and right the Quote....

THANKS SOOOOO MUCH TO ANYONE THAT CAN HELP ME!!!


<td valign="baseline" nowrap>
<smallfont>

(<a href="showthread.php?postid=$post[postid]#post$post[postid]">Post #$countposts</a>)

<center>
$post[foldericon] $post[postdate] <b>::</b>
$post[posttime] </center> quote: <input type="checkbox" name="quotes[$post[postid]]">
</smallfont></td>



BTW: I know i am far off...i messed with it but still couldn't get it!

Erwin
11-17-2002, 04:39 AM
Try this code:


<td valign="baseline" align="center" nowrap>
<smallfont>
<nobr>(<a href="showthread.php?postid=$post[postid]#post$post[postid]">Post #$countposts</a> ) $post[foldericon] $post[postdate] <b>::</b> $post[posttime] quote: <input type="checkbox" name="quotes[$post[postid]]"></nobr>
</smallfont>
</td>

ZiRu$
11-17-2002, 04:52 AM
Thanks Erwin For the Quick Reply.....your VERY close....

But See Attached Image

They are on the same line ;) but i really want them left, center and right!

If thats possible.....thx in advance

And thanks for helping me get that far

Erwin
11-17-2002, 05:04 AM
Try this then:


<td valign="baseline" align="center" nowrap>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" width="33%"><smallfont> <nobr>(<a href="showthread.php?postid=$post[postid]#post$post[postid]">Post
#$countposts</a> ) $post[foldericon] $post[postdate] <b>::</b></nobr> </smallfont>
</td>
<td align="center" width="33%"><smallfont> <nobr>$post[posttime]</nobr> </smallfont></td>
<td align="right" width="33%"><smallfont> <nobr>quote:
<input type="checkbox" name="quotes[$post[postid]]">
</nobr> </smallfont></td>
</tr>
</table>
</td>

ZiRu$
11-17-2002, 02:23 PM
Oh ++++ Erwin It WORKED PERFECT MAN! thank you soooooo much homie!