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

Frames work with IE but not with Netscape 1

Status
Not open for further replies.

DanAuber

IS-IT--Management
Apr 28, 2000
255
FR
I'm having exactly the following problem - my frameset page looks gorgeous in IE and like a dogs breakfast on Netscape - Using Navigator 4.08

My Index page code is as follows:

<html>
<head>
<title>Index</title>
<meta name =&quot;keywords&quot; content=&quot;Auber, Oracle, Unix, Cedar, Cfacs, Cedardata&quot;>
</head>
<frameset rows = &quot;20%,*&quot; cols =20%,*&quot;>
<frame frameborder=0 scrolling=no src=&quot;Frame1.html&quot;>
<frame frameborder=0 marginwidth=3 scrolling=no src=&quot;Frame2.html&quot;>
<frame frameborder=0 scrolling=no src=&quot;Frame3.html&quot;>
<frame frameborder=0 marginwidth=20 src=&quot;Start_Page.html&quot; name=&quot;Frame4&quot;>
<no frames>
sorry this document can be viewed only with a frames capable browser.
</noframes>
</frameset>
</html>

Any Clues as to why netscape can't handle this gratefully received


Dan Auber
DanAuber@aol.com
 
Hi Dan,

you missing the &quot; before the 20% so Netscape will think it is (20,*) not (20%,*). Here.. change this line.. and it should look the same as IE

<frameset rows = &quot;20%,*&quot; cols =&quot;20%,*&quot;>





Chiu Chan
cchan@gefmus.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top