I have a 3 frame page that contains a footer at the bottom. The footer consists of an image that is 25 high. My frame height for that footer is also 25 high. The problem is that I cannot move the image to the top of the frame and when the page displays, the footer image is cut off. I tried increasing the footer frame height but that does not seem to matter. How can I make my footer image move to the very top of the frame? TIA.
Here is the frameset:
Copyright.html page:
Here is the frameset:
Code:
<frameset rows="90,*,25" frameborder="NO" border="0" framespacing="0">
<frame src="/menuframe.html" name="topFrame" scrolling="NO" noresize >
<frame src="/Introframe.html" name="mainFrame">
<frame src="/Copyright.html" name="bottomFrame" scrolling="no" noresize>
</frameset>
Code:
<html>
<head>
<title>Copyright Frame</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body background="Images/TILE007.gif">
<div align="center"><img src="Images/Copyright.jpg" width="850" height="25" border="0" usemap="#Map">
<map name="Map">
<area shape="rect" coords="747,1,817,33" href="Mailto:%20support@mydomain.com">
</map>
</div>
</body>
</html>