A little frame problem.

liunx

Guest
Heres the site (<!-- m --><a class="postlink" href="http://www.uogameresources.com">http://www.uogameresources.com</a><!-- m -->)<br />
<br />
My problem is... I have the top frame and the bottom frame connected together with images'. The image is a chain sort of thing. On the left side it is fine, but on the right side, see where it is having trouble aligning with each other? If I take off a percentage of the table of the bottom frame, it will just become uneven in a differen't area. What do i do to make this work? Pixels'?<!--content-->I noticed that you did not close the top-right frame with<br />
<br />
</BODY><br />
</HTML><!--content-->netscape is messed up. I removed some images in the coding, but it still shows up in netscape. Why would it still be showing? Also, how do I fix that alignment problem? Am I the only one trying to align images with frames?<!--content-->Originally posted by dabush <br />
I noticed that you did not close the top-right frame with<br />
<br />
</BODY><br />
</HTML> <br />
<br />
That is not an error. Those tags are optional in HTML<!--content-->Originally posted by gokou <br />
netscape is messed up. I removed some images in the coding, but it still shows up in netscape. Why would it still be showing? Also, how do I fix that alignment problem? Am I the only one trying to align images with frames? <br />
<br />
Well for starters you frameset code is broken.<br />
<br />
You are missing the required doctype and the noframes section must be just before the last </frameset><br />
<br />
Start with fixing that and see if it helps.<br />
<br />
For reference here is how a correct frameset could look like<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd"><br />
<html><br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title></title><br />
</head><br />
<frameset cols="100, 1*" border="0"> <!-- border="0" is a bugfix for incorrect frameborder=0 support in IE, NS as well as Opera --><br />
<frame name="nav" src=http://www.webdeveloper.com/forum/archive/index.php/"nav.html" frameborder="0" marginwidth="0" marginheight="0" scrolling="auto"><br />
<frame name="main" src=http://www.webdeveloper.com/forum/archive/index.php/"main.html" frameborder="0" marginwidth="0" marginheight="0" scrolling="auto"><br />
<noframes><br />
<body><br />
<p><br />
Frames are not working in your Browser.<br><br />
You can reach the individual pages of the frameset via these links<br><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"nav.html">Navigation</a><br><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"main.html">Main</a><br />
</p><br />
</body><br />
</noframes><br />
</frameset><br />
</html><!--content-->Thanks Stefan. I made alot of changes before reading your post, but I didn't change anything there except I did change the % to pixels', that helped alot. I don't like to use declarations' because I don't understand them and I assume my code wouldn't validate anyways'. I'll make some of the changes you showed in the morninng, but right now i'm going to bed.<!--content-->
 
Back
Top