View Full Version : Ajustable frames


lukejtharries
04-24-2006, 11:25 PM
Something is wrong with my frames- they are ajustable, when I don't want them to be.
My index.htm:
<html>
<head>
<title>VOLCANOES _/"\_ By Luke Harries</title>
</head>
<!----- I truly apologise for using frames (I hate frames to be honest) but I couldn't think of any other way to center my page ---->
<frameset cols="*,765,*">
<frame src="black.htm" name="blank">
<frame src="home.htm" name="content">
<frame src="black.htm" name="blank">
</frameset>
<body>
</body>
<noframes>
<a href="main.htm">Click Here (the page will look a little funny)</a>
</noframes>
</html>

And my home.htm:
<html>
<head>
<title>{VOLCANOES}</title>
<LINK href="style.css" rel="stylesheet" type="text/css">
<script language="javascript" type="text/javascript">
//<!--
function popup()
{ window.open ("thank.htm","popup","width=400,height=600,location=0,menubar=0,resizabl e=0,scrollbars=0,status=0,titlebar=1,toolbar=0") }
-->
</script>


</head>
<!--------Top Image------>

<div id="top">

<table id="Table_01" width="760" height="165" border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="5"><img src="images/topblack.jpg" width="760" height="5" alt=""><br>
<img src="images/topblack.jpg" width="760" height="5" alt=""><br>
<img src="images/topblack.jpg" width="760" height="5" alt="">

</td>

</tr>
<tr>
<td width="137">
<img src="images/top_01.jpg" width="137" height="150" alt=""></td>
<td width="115">
<img src="images/top_02.jpg" width="115" height="150" alt=""></td>
<td width="212">
<img src="images/top_03.jpg" width="212" height="150" alt=""></td>
<td width="185">
<img src="images/top_04.jpg" width="185" height="150" alt=""></td>
<td width="111">
<img src="images/top_05.jpg" width="111" height="150" alt=""></td>
</tr>
</table></div>
<!------End Top Image----->
<div align="center">
<div id="nav">

<script src="nav/xaramenu.js"></script><script menumaker src="nav/connexion.js"></script>
</div>
</div>



<div id="main">
All the text goes here.....

</div>


</body>

</html>


See it live:
http://www.harries.xenweb.net/webchallenge/main.htm

AppealingDesigns
04-25-2006, 01:08 AM
add "noresize" to your frame tag eg:
<frame noresize src="black.htm" name="blank">
that will do the trick :)