i made some frames on my website, and i used the % of page to size them, the problem i'm seeing is that when i have a different pixel setting on my monitor my control bar is getting cut off.
how do i code the frames with exact pixels for the first column, but general size for the rest, so that the last column, which is empty space will be the only thing that changes depending on the monitor setting?
oh great, i was gonna write a post for that before. my site works in explorer but not netscape, netscape just shos the left frame and opens the link in a new window, any idea why?
Originally posted by ptherin
my site works in explorer but not netscape, netscape just shos the left frame and opens the link in a new window, any idea why?
Becuse your code is broken. Eg you got your <noframes> section outside your <frameset> and are missing important things like doctype and charencoding.
It should look something like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
</head>
<frameset cols="100, 1*" border="0"> <!-- border="0" is a bugfix for IE, NS as well as Opera -->
<frame name="nav" src="nav.html" frameborder="0" marginwidth="1" marginheight="1" scrolling="auto">
<frame name="main" src="home.html" frameborder="0" marginwidth="1" marginheight="1" scrolling="auto">
<noframes>
<body>
<p>
Frames are not working in your Browser.<br>
If you have Frames turned off, please turn it on to view this site.
</p>
</body>
</noframes>
</frameset>
</html>
Bookmarks