Hey Web Gurus
Jun. 7th, 2002 05:33 pmDo any of you know how to format a webpage the way I want it?
Basically, I'd like a small, innocuous navbar (made of thumbnail sized pictures or something) on the *right* of the page (next to the scrollbar to make navigation faster).
Basically, I'd like a small, innocuous navbar (made of thumbnail sized pictures or something) on the *right* of the page (next to the scrollbar to make navigation faster).
(no subject)
Date: 2002-06-07 06:08 pm (UTC)<table width=100%>
<tr width=100%>
<td width=90%> Page Body Goes Here </td>
<td width=10% align=right> NavBar Code Goes Here </td>
</tr>
</table>
Adjust the 90/10 ratio as you see fit. Alternatively, if you know exactly how many pixels wide the bar will be, (for example, 87):
<table width=100%>
<tr width=100%><td width=100% colspan=2> </td></tr>
<tr width=100% align=right>
<td> Page Body Goes Here </td>
<td width=87 align=right> NavBar Code Goes Here </td>
</tr>
</table>
Again, adjust navbar width as you see fit.
(no subject)
Date: 2002-06-09 12:37 am (UTC)<TABLE BORDER=1 WIDTH=100%>
<TR>
<TD WIDTH=100%>
...Body...
</TD>
<TD>
<TABLE BORDER=0 WIDTH=87>
<TR>
<TD>
...Thumbnail...
</TD>
</TR>
<TR>
<TD>
...Thumbnail...
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>