Posts: 317
Name: This Space for Rent
Location: Georgia
|
what would happen if you used css and put all the content in one page?
get rid of the frames and on the lower content portion, try putting it into a <div> by using the following and adjust the height and width to meet your needs.
Code:
<div style="width:600px; height:600px; overflow:auto;">
Your content
</div>
Compatibility (googled to find this info)
Netscape 4: Incorrect, same as hidden.
Mozilla: Correct
Explorer 4-6 Windows: Correct
Explorer 4 Mac: Incorrect, same as hidden.
Explorer 5 Mac: Correct, but it's difficult to evade a horizontal scrollbar. It has, however, strange bugs when you use an overflow: auto on an element in a nested table.
Opera 5: Incorrect, same as visible.
Opera 7: Correct.
Safari: Correct.
__________________
Daniel
"I think therefore I am, I think." <!-- George Carlin
Last edited by ExpressoDan : 05-25-2006 at 04:44 PM.
|