Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frame look without Frames.

Status
Not open for further replies.

Gatorajc

MIS
Mar 1, 2002
423
0
0
US
I am trying to create a page where the side and top are fixed and the main scrolls. I can do this with frames but how would I go about doing it without Frames.

Thanks in advance.

AJ
I would lose my head if it wasn't attached. [roll1]
 
?

The whole page moves. I just would want the text to move. AJ
I would lose my head if it wasn't attached. [roll1]
 
Gatorajc

What browser are you using?

The page I pointed out is done using CSS-P, Works in IE 5.0, IE6, Mozilla 1+, NS 6+, Opera 6+, Mac IE 5.5+

Degrades IE 4, IE 5.5, NS 4 and other browsers
 
or try something like this:

<html><body>
<table width=&quot;100%&quot;>
<tr><td height=&quot;100px&quot; colspan=&quot;2&quot; style=&quot;background:red&quot;>
 </td></tr>
<tr><td width=&quot;100px&quot; style=&quot;background:blue&quot;> </td>
<td style=&quot;background:yellow&quot;>
<div style=&quot;height:300px; overflow-y:scroll&quot;>

</div>
</td></tr></table>
</body></html> Clive
 
IE 5.5 AJ
I would lose my head if it wasn't attached. [roll1]
 
It's not difficult, simply break your page up into 3 sections, either with tables or divs, then just scroll the div/cell that you want to scroll. You won't get the exact frames look and I think scrolling divs don't work in all browsers just yet.


É
::
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top