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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape Frame Problem

Status
Not open for further replies.

aleci

Programmer
May 22, 2001
40
GB
Hi all,
Can anybody see anything wrong with the following code ?
I use it to create a single frame covering the whole page:

<html>
<head>
<title>Netscape Frame</title>
</head>

<frameset border=&quot;0&quot; frameborder=&quot;0&quot; framespacing=&quot;0&quot;>
<frame name=&quot;everything&quot; src=&quot;left2.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;auto&quot; frameborder=&quot;0&quot; BORDER=&quot;0&quot; FRAMESPACING=&quot;0&quot; noresize>
</frameset>

</html>


It works fine in IE and Netscape 6.2 but Netscape 4.x doesnt seem to like it .
Thanks in advance!
 
Hi,

In Netscape you can't get a frame to cover the whole page - doesn't like it.

What you can do however is to create two frames, with the top frame being 1px which contains a blank page so it is virtually invisible to the user.

<frameset rows=&quot;1,*&quot; border=&quot;0&quot; frameborder=&quot;0&quot; ramespacing=&quot;0&quot;>
<frame name=&quot;blank&quot; src=&quot;blank.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; BORDER=&quot;0&quot; FRAMESPACING=&quot;0&quot; noresize>
<frame name=&quot;everything&quot; src=&quot;left2.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;auto&quot; frameborder=&quot;0&quot; BORDER=&quot;0&quot; FRAMESPACING=&quot;0&quot; noresize>
</frameset>

Try it out and see what you think.

Cheers

Tom
 
Thanks once again Tom!
It works fine; you dont even notice it
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top