View Full Version : frames...scrolling...help?


evilgirl2200
04-02-2003, 11:56 PM
I did all the stuff that lissa's site said to to if you want a leftsided frame with no scrolling, no resize, and no border. My lefthand frame is kind of like a .... directory? is it? Anyway, its longer than the screen and i can't see ther rest of it when i scroll down (with the right hand scroll) and i want to be able to. what to do? btw... heres the link to my site. there aren't supposed to be any links yet so....yeah. click (http://www.geocities.com/evilgirl2200/index/index.html)

i want it to scroll like lissa's site...where the left frame moves with the right one...unless she's not using frames, in which case i ask... how do you do it like that?

i must be very confusing....

~allison

zangerbanger
04-03-2003, 12:12 AM
*hehe I remember the time when I asked the exact same question and I thought Lissa was using frames*

Lissa's site doesn't use frame, it uses tables. To do it, you change your body tag to look like this:

<body topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0" marginwidth="0" marginheight="0"

and then you make 2 tables with different % values like this:

<table width="20%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
ALL YOUR CONTENT IN THE SMALL TABLE (just like Lissa's menu)
</td>
</tr>
</table>

<table width="80%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
ALL YOUR CONTENT IN THE BIG TABLE
</td>
</tr>
</table>

Hope that helps!

evilgirl2200
04-03-2003, 12:39 AM
thank u thank u thank u......theres still one problem tho....lookie here: click (http://www.geocities.com/evilgirl2200//index.html)

why is the text for the second table alllllll the way down below the first table? i, uh, kinda want it right next to the first....like side by side maybe?

zangerbanger
04-03-2003, 12:44 AM
I have an idea, try this:

<table width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="20%">
ALL YOUR CONTENT IN THE SMALL TABLE (just like Lissa's menu)
</td>
<td width="80%">
ALL YOUR CONTENT IN THE BIG TABLE
</td>
</tr>
</table>