Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sidebar without frames (HTML)
#3
there are two ways: tables and css. the table way involves using a standard table, like so:

Code:
<table width=100% cellpadding=0 cellspacing=0 border=0>
  <tr>
     <td width=the_width_of_the_menu valign=top>
       The menu goes HERE
     <td valign=top>
       The site goes HERE
</table>
the other way involves using the position property of css.

Code:
<div style="position:absolute; left:5; top: 5">
  Menu goes here
</div>

Though it's more practical to make a class object and use it instead. either way works fine once you get it down.
i]"I know what you're thinking. Did he fire six shots or only five? Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being as this is a .44 Magnum ... you've got to ask yourself one question: 'Do I feel lucky?' Well, do ya punk?"[/i] - Dirty Harry
Reply


Messages In This Thread
Sidebar without frames (HTML) - by Zack - 05-16-2003, 08:52 PM
Sidebar without frames (HTML) - by Agamemnus - 05-16-2003, 09:47 PM
Sidebar without frames (HTML) - by toonski84 - 05-16-2003, 09:50 PM
Sidebar without frames (HTML) - by Zack - 05-16-2003, 10:32 PM
Sidebar without frames (HTML) - by oracle - 05-17-2003, 09:39 AM
Sidebar without frames (HTML) - by toonski84 - 05-17-2003, 09:49 AM
Sidebar without frames (HTML) - by oracle - 05-17-2003, 10:29 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)