Over lapping frames....?

windows

Guest
I have a frameset setup on my page, problem is that when anyone views the page with a resolution of 800x600 or lower the frames seem to "slide" overtop of one another...<br />
<br />
Go to: <!-- m --><a class="postlink" href="http://www.sibername.ca/~bigred/frameset.html">http://www.sibername.ca/~bigred/frameset.html</a><!-- m --><br />
<br />
Either change your res to 800x600 or manually resize your browser window. You will notice that as the height of the browser window decreases the top frame slips under the main one....<br />
<br />
I already thought to put slide bars at the side of the frames but I don't want people to have to do that.... I want the format to stay the same... and just have one slide bar that will scroll the entire page or just the center frame.<br />
<br />
From some advice I was given I created a test page with some modifications.<br />
<!-- m --><a class="postlink" href="http://www.sibername.ca/~bigred/framesettest.html">http://www.sibername.ca/~bigred/framesettest.html</a><!-- m --><br />
<br />
More or less, that is how I want the page to look. It works perfectly at 800x600 or lower, but when you view it with a larger resolution the bottom "about" bar stays at the bottom of the browser window. I need that bar to remain up tight against the bottom of the main center frame.<br />
<br />
Thanks in advance. I would appreciate any input on this problem.<!--content-->I think you have something wrong with your frames. you have things backwards.<br />
<br />
<frameset rows="144,370,*" border="0"><br />
<frame name="top" src=http://www.htmlforums.com/archive/index.php/"top.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
<frame name="middle" src=http://www.htmlforums.com/archive/index.php/"main.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
<frame name="bottom" src=http://www.htmlforums.com/archive/index.php/"bottom.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
<br />
<NOFRAMES><br />
<center><b>Spoil yourself - get a new browser! This site only works with frame enabled browsers.</b></center><br />
</NOFRAMES><br />
<br />
<br />
</frameset><br />
<body><br />
<br />
<br />
<br />
should be like this<br />
<br />
<frameset rows="144,370,*" border="0"><br />
<frame name="top" src=http://www.htmlforums.com/archive/index.php/"top.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
<frame name="middle" src=http://www.htmlforums.com/archive/index.php/"main.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
<frame name="bottom" src=http://www.htmlforums.com/archive/index.php/"bottom.html" marginwidth="0" marginheight="0" noresize="yes" scrolling="no" frameborder="0"><br />
</frameset><br />
<br />
<NOFRAMES><br />
<body><br />
<!-- frames <br />
<br />
fffffff--><br />
<br />
<center><b>Spoil yourself - get a new browser! This site only works with frame enabled browsers.</b></center><br />
</body><br />
</NOFRAMES><br />
</html><!--content-->Thanks for the suggestion. I tried the changes and they didnt seem to make any difference. But thanks anyways.<!--content-->you tried the changes but you still have the old code on the page.<!--content-->Yeah I only tired the changes locally... I have yet to upload anything.<!--content-->
 
Back
Top