Your question emphasizes trying to keep the top frame from resizing.
When the browser windows resizes, something has to give. So, my
strategy for preventing the top frame from resizing comes at the
expense of the second row of the frame.
This is done by using an asterick instead of 270 to define the second
row of the frame.
Here is the completed source. When I tested it, it allowed the size
of the browser window to be resized without the first row shrinking or
growing.
I hope this is what you were looking for. I have made no other
changes to the code. The updated code is provided following the
finished answer.
I used the following links for reference:
Iota-six: Frames
http://www.iota-six.co.uk/html/27_frame.htm
Devshed: Frames resize problem
http://forums.devshed.com/archive/1/2002/09/1/42719
Search Strategy: Review HTML Frame guidelines for reference.
Search Terms: html frames resize
://www.google.com/search?q=html+frames+resize
I hope you have found this information useful and easy to understand.
If you have questions about the information provided, please do not
hesitate to request a clarification before rating the answer.
<HTML>
<head>
<title>HTA</title>
<script language="JavaScript" type="text/JavaScript"
src="title.js"></script>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</head>
<frameset cols="*,699,*" border="0" framespacing="0" frameborder="0" >
<frame name="left" scrolling="no" border="0" framespacing="0"
frameborder="0" marginwidth="0" marginheight="0" src="rigth.htm"
target="_self" NORESIZE >
<frameset rows="154,*,18" border="0" framespacing="0" frameborder="0"
scrolling=no >
<frame name="top" scrolling="no" border="0" framespacing="0"
frameborder="0" marginwidth="1" marginheight="13" src="banner.html"
target="_top" NORESIZE >
<frameset cols="7*,81%">
<frame name="home" scrolling="no" border="0" framespacing="0"
frameborder="0" marginwidth="2" marginheight="5" src="tvmenu.shtml"
target="_blank" NORESIZE>
<frameset rows="*,1%">
<frame name="home1" src="home.htm" scrolling="auto"
target="_self">
<frame name="home2" src="new_page_1.htm" scrolling="no">
</frameset>
</frameset>
<frame name="footer" scrolling="no" border="0" framespacing="0"
frameborder="0" marginwidth="0" marginheight="0" src="index1.htm"
target="_self" NORESIZE >
</frameset>
<frame name="right" scrolling="no" border="0" framespacing="0"
frameborder="0" marginwidth="0" marginheight="0" src="rigth.htm"
target="_self" NORESIZE >
</frameset>
</HTML> |