"no frames" version

liunx

Guest
I would very much appreciate any help someone could give me regarding a framed site I have created.<br />
<br />
I initially used Cutesite Builder to create it. Cutesite puts in a "no frames" version. I have tweaked the html in all the files of the site.<br />
<br />
I have two questions:<br />
<br />
1. I checked the site using Opera set to no frames and initially the site homepage appears- strange looking, but after clicking on one of the site links that do show, it kicks in to the proper "no frames" version. Can anyone tell me why this might be happening and how to fix it? <br />
<br />
2. Does having the alternate "no frames" version in my site slow it down very much? There are many images, including a slide show. If it does slow it down -- I don't really need the "no frames" version. Is there a way I can edit or eliminate it? ( I have tried to eliminate the images from within the frameset file, but they seemed to "come back". ) <br />
<br />
If you would like to take a look at the site, it is <!-- m --><a class="postlink" href="http://www.newmexicosoundrecordist.com">http://www.newmexicosoundrecordist.com</a><!-- m --><br />
<br />
Thank you very much.<br />
Jane<!--content-->Your noframes page is written all within the <noframes> </noframes> tags. I would recommend just making a whole new page and in the <noframes> section put:<br />
<br />
<head><br />
<meta http-equiv="refresh" content="1;url=youraltpage.html"><br />
</head><br />
<body><br />
You are being redirected<br />
</body><!--content-->I don't think you can put a <head> section inside a <noframes> element, only a <body> element; so you should do something more like:<br />
<br />
<br />
<frameset ...><br />
<!-- frames here --><br />
<noframes><body><p><br />
Please go to the<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"no_frames.htm>No-frames section</a> of my site.<br />
</p></body></noframes><br />
</frameset><br />
<br />
<br />
And to answer one of the original questions it won't slow your site down.<br />
<br />
By the way, you have the wrong doctype in there for your frameset page, you should have this instead:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"<br />
"http://www.w3.org/TR/html4/frameset.dtd"><!--content-->I've put a <head> section in a noframes section before. I don't know if it works or not because I can't figure out how to turn frames off in IE 5.5 for testing lol. You should probably use this instead:<br />
<br />
<body onLoad="redirect();"><br />
<script language="JavaScript" type="text/JavaScript"><br />
<br />
function redirect() {<br />
top.location.href = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"alt-page.html";<br />
return true;<br />
}<br />
<br />
</script><br />
</body><!--content-->Originally posted by Zach Elfers <br />
I've put a <head> section in a noframes section before. I don't know if it works or not because I can't figure out how to turn frames off in IE 5.5 for testing lol. <br />
<br />
<br />
You are not allowed to have multiple <head> sections on a webpage so obviously you can't have one in the <noframes> section on the page.<br />
If it works it's 100% depending on errorcorrection in browsers and relying in that a very weak coding approach.<br />
<br />
<br />
You should probably use this instead:<br />
<body onLoad="redirect();"><br />
<script language="JavaScript" type="text/JavaScript"><br />
<br />
function redirect() {<br />
top.location.href = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"alt-page.html";<br />
return true;<br />
}<br />
<br />
</script><br />
</body> [/B] <br />
<br />
A browser not working with frames is very likely to not work with javascript either, so you will still need the regular <a href> link. If you feel the JS redirect is in any way usefull, you could provide it in addition to the link.<!--content-->Thank you for your help, Zach, Rick and Stefan. <br />
<br />
I will mull over the information you have all given me and then use it to work on my site. <br />
<br />
I really appreciate it.<br />
<br />
Jane<!--content-->Originally posted by Stefan <br />
You are not allowed to have multiple <head> sections on a webpage so obviously you can't have one in the <noframes> section on the page.<br />
If it works it's 100% depending on errorcorrection in browsers and relying in that a very weak coding approach.<br />
<br />
<br />
<br />
A browser not working with frames is very likely to not work with javascript either, so you will still need the regular <a href> link. If you feel the JS redirect is in any way usefull, you could provide it in addition to the link. <br />
<br />
hmm... good point. I never thought of the JavaScript thing.<!--content-->
 
Back
Top