| Member with 27,087 posts. | | Join Date: Oct 2001 Location: Striking or Scoring Experience: The Alpha and Omega | |
Oh, this is a simple one
In your index.html file's code, dreamweaver has placed a / before all your file names, causing IE to look in the wrong spot.
eg Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="65,*,47" cols="*" framespacing="0" frameborder="NO" border="0">
<frame src="/logo.html" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="134,*" framespacing="0" frameborder="NO" border="0">
<frame src="/navbar.html" name="leftFrame" scrolling="NO" noresize>
<frame src="/indexbody.html" name="mainFrame">
</frameset>
<frame src="/webmaster.html" name="bottomFrame" scrolling="NO" noresize>
</frameset>
<noframes><body>
</body></noframes>
</html> Remove the / in each frames src
eg change: Code: frame src="/logo.html" to Code: frame src="logo.html" do that for all of them, and you're golden 
__________________ izme: You know...it's kind of nice to sit atop Civilized debate and look down below on all of the uncivilized master debating  we are here...just out of the fight zone
Gibble: Now you know what it's like to be Canadian. |