sabrinastar
01-12-2003, 08:20 PM
for a new layout on my website, i want to make a pop-up window with tables. i know how to do this already, however, for one of the tables, i want to make it scroll. i know that it is possible, but is it for a single cell? and if anyone knows that, could you please provide me with directions and the code? thanks sooo much!!!
the_dark_one02
01-12-2003, 08:22 PM
i dont know if u can giv a cell scoll bars but u could just put an ifram in it!
sabrinastar
01-12-2003, 08:27 PM
well i would but thats for the menu and an inline frame will be in another cell...
the_dark_one02
01-12-2003, 08:33 PM
by the way u can have as many iframes as you want.
sabrinastar
01-12-2003, 08:35 PM
i know but if 1 has the menu and if its supposed to link to another iframe... can that work?
the_dark_one02
01-12-2003, 08:39 PM
yeh shure it can just put this in yer link <a href="wateva.html" target="name of other iframe"> that should work
sabrinastar
01-12-2003, 08:41 PM
i dunno if it'll work but i'll try it
sabrinastar
01-12-2003, 08:51 PM
i tried it it didnt work but heres the html 4 my friend's scrolling table...
<br><p><table style="Position:absolute; top:100; left:325;">
<ilayer name="scroll1"><br><div id="scroll3"
style="width:350; height:200;
background-color:;
overflow:auto">
does anyone know how i can do that for 1 cell in a bunch of tables?
the_dark_one02
01-12-2003, 09:08 PM
u could always add another table into that cell
acktacky
01-13-2003, 03:17 AM
You change the names of the Iframes themselves. Here...
IFRAME ONE
<iframe src="main.html" name="inlineframe" width="your width" height="your height" style="border: 5 solid #000000"></iframe>
IFRAME TWO
<iframe src="main2.html" name="inlineframe2" width="your width" height="your height" style="border: 5 solid #000000"></iframe>
and then when you make links you just go <a href="whatever.html" target="whicheverinline">fadfa</a>
Just adding a little more info to what Dark said.