Forum Moderators: open

Message Too Old, No Replies

noresize issue in NN?

I don't need no stinking scrollbars

         

plastyk

7:21 am on Nov 17, 2002 (gmt 0)

10+ Year Member



I've created a site that makes use of frames (sorry). I don't want any scrollbars anywhere, if the users browser isn't scaled large enough I just want them to miss out on the content on the outside, if they do have a sufficiently sized browser window I want the outer frames to scale, but I still want all of the "inner" frames to stay a set size. It works fine in IE (on the mac anyway, I haven't tested on PC yet), but in NN6 is scales all the frames and messes up the layout.

Here is the code I'm using, what am I doing wrong?

<frameset border="0" cols="*" frameborder="no" framespacing="0" rows="546,218,*">
<frameset border="0" frameborder="no" framespacing="0" cols="334,146,512,*">
<frame name="leftmost" noresize scrolling="no" src="assets-main-leftmost/00intro.html">
<frame name="center" noresize scrolling="no" src="tempimages/center.html">
<frame name="main" noresize scrolling="no" src="tempimages/right.html">
<frame name="right" noresize scrolling="no" src="assets-main-misc/right-background-texture.html">
</frameset>
<frame name="middle" noresize scrolling="no" src="assets-main-misc/mid-animation-information.html">
<frame name="lower" noresize scrolling="no" src="assets-main-misc/lower-graphics.html">
<noframes>

<body bgcolor="#ffffff">
<p></p>
</body>

</noframes>
</frameset>

tedster

5:23 pm on Nov 19, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try adding frameborder="0" to the frame tags (I'm talking <frames> not the frameset here). I haven't tested it in NN6, but in older versions this was important for Netscape to get things right.

plastyk

10:04 pm on Nov 19, 2002 (gmt 0)

10+ Year Member


Thanks, but it doesn't seem to have helped. I'll post the new code for review anyway:

<frameset border="0" cols="*" frameborder="no" framespacing="0" rows="546,218,*">
<frameset border="0" frameborder="no" framespacing="0" cols="334,146,512,*">
<frame name="leftmost" frameborder="0" noresize="true" scrolling="no" src="assets-main-leftmost/00intro.html">
<frame name="center" frameborder="0" noresize="true" scrolling="no" src="tempimages/center.html">
<frame name="main" frameborder="0" noresize="true" scrolling="no" src="tempimages/right.html">
<frame name="right" frameborder="0" noresize="true" scrolling="no" src="assets-main-misc/right-background-texture.html">
</frameset>
<frame name="middle" frameborder="0" noresize="true" scrolling="no" src="assets-main-misc/mid-animation-information.html">
<frame name="lower" frameborder="0" noresize="true" scrolling="no" src="assets-main-misc/lower-graphics.html">
<noframes>

<body bgcolor="#ffffff">
<p></p>
</body>

</noframes>
</frameset>