TheInsider
Programmer
Hello,
I have a website that is developed using frames. The website contains header, body, and footer frames, and is only 760 pixels wide. I am required to center it horizontally on the screen. The following snippet from the frames page works perfectly in Netscape but fails to load at all in Internet Explorer -- i get a completely gray screen. Can someone please explain why this is so and suggest how i could acheive the desired result in both browsers?
As you can see there are 2 padding column frames on either side right now, using "*" as their widths.
Thank you,
TheInsider
I have a website that is developed using frames. The website contains header, body, and footer frames, and is only 760 pixels wide. I am required to center it horizontally on the screen. The following snippet from the frames page works perfectly in Netscape but fails to load at all in Internet Explorer -- i get a completely gray screen. Can someone please explain why this is so and suggest how i could acheive the desired result in both browsers?
Code:
<frameSet cols="*, 760, *">
<frameSet rows="*" frameBorder="0" noResize scrolling="no"></frameSet>
<frameSet rows="60, *, 40">
<frame frameBorder="0" name="header" noResize scrolling="no" src="header.htm">
<frame frameBorder="0" name="body" noResize scrolling="auto" src="body.htm">
<frame frameBorder="0" name="footer" noResize scrolling="no" src="footer.htm">
</frameSet>
<frameSet rows="*" frameBorder="0" noResize scrolling="no"></frameSet>
</frameSet>
As you can see there are 2 padding column frames on either side right now, using "*" as their widths.
Thank you,
TheInsider