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!

page not viewable in netscape 2

Status
Not open for further replies.
By the way, in netscape, you are able to see the frames, but the content of the frames shows the html code.
 
sorry to post 3 times, just one more thing - I can't seem to make the top frame not scroll - even if I change it to scroll="no" Thanx much
 
Well, take a look at your code, you are missing some very specific elements:

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>

<html>
<head>
<title>Untitled</title>
</head>

<body>



</body>
</html>

the document decleration type, the head and title tags. Also, very closely review your code, is there any open brackets that need to be closed?

Also, look at your frameset codes as shown below with errors noted:

<!doctype html public &quot;-//w3c//dtd html 3.2//en&quot;>

<html>

<head>
<title>
Unofficial Drew Carey Fan Page</title>
<meta name=&quot;description&quot; content=&quot;The site for Drew Carey Lovers&quot;>
<meta name=&quot;keyword&quot; content=&quot;Drew Carey, TV, TV shows, comedy, sitcoms&quot;>
<META NAME=&quot;keywords&quot; CONTENT=&quot;tv,drew carey,drew,who's line is it anyway, sitcoms,cleveland,celebrities,actors,comedians,stand up comedians,comedy,comedies,tv comedies,stand up comedy, improv,ryan stiles,kathy kinney,prime time show,tv shows,abc&quot;>
<META HTTP-EQUIV=&quot;Page-Enter&quot; CONTENT=RevealTrans(Duration=4,Transition=3)&quot;>
<META HTTP-EQUIV=&quot;Page-Exit&quot; CONTENT=&quot;RevealTrans(Duration=4,Transition=2)&quot;>
</HEAD>
<frameset cols=&quot;100%&quot; rows=&quot;100,*&quot; border=&quot;1&quot; frameborder=&quot;1&quot; framespacing=&quot;1&quot;>

<frame name=&quot;top&quot; src=&quot; (Closing bracket before margins is a no no > <---- this could be causing your problem.) marginwidth=&quot;1&quot; marginheight=&quot;3&quot; scrolling=&quot;no&quot; frameborder=&quot;no&quot;>

<frameset cols=&quot;170,*&quot; border=&quot;1&quot; frameborder=&quot;1&quot; framespacing=&quot;1&quot;>

<frame name=&quot;left&quot; src=&quot; marginwidth=&quot;1&quot; marginheight=&quot;1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; noresize>

<frame name=&quot;right&quot; src=&quot; marginwidth=&quot;1&quot; marginheight=&quot;1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; noresize>

</frameset>

</frameset>

</HEAD>
</HTML>

IE is more friendly for the beginning designer and will allow you to make minor mistakes and still show your page, NS is not forgiving - it will not render your page unless your code is accurate.


Also, the only tags that are required in the frameset are the frameset tags, NO HTML tags (Head, title, html). You may keep your meta tags there.




Hope this helped!
 
Thank you so much, especially for your quick response. I'm going to go back and review my code.
 
I would not recommend leaving the html, head, and title tags out of a page containing a frameset...
The browser will still render the page without these (just like it will with a non-frames page missing these tags), but it is definitely good practice to leave them in.

The tag you should not include in a frames page is the body tag, because the frameset tag(s) replace it.

Just my 2 cents...
 
Thanks aperfectcircle. I have gotten the site working in netscape now. It seems the main problem was that my page names did not end in &quot;html.&quot; Also the top frame did not scroll because of the > in the wrong place as WebGodiva had mentioned. Thanks again you guys. I appreciate the help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top