Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames Help 1

Status
Not open for further replies.

jewel464g

Technical User
Jul 18, 2001
198
US
Hi Guys,

I haven't used frames in years, but I have a customer that wants them, so I'm trying to do it, BUT I've run into a problem with my top frame when I resize the window it doesn't ajust accordingly. Below is a link to the site and my code.


<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>
<frameset rows=&quot;155,454,49&quot; cols=&quot;*&quot;>
<frame name=&quot;top&quot; src=&quot;top.htm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;No&quot; frameborder=&quot;no&quot; framespacing=&quot;0&quot;>
<frame name=&quot;middle&quot; src=&quot;middle.htm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;yes&quot; frameborder=&quot;no&quot;framespacing=&quot;0&quot;>
<frame name=&quot;bottom&quot; src=&quot;bottom.htm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;No&quot; frameborder=&quot;no&quot; noresize framespacing=&quot;0&quot;>
</frameset>
<noframes><body bgcolor=&quot;#FFFFFF&quot;>

</body></noframes>
</html>


Thanks,
Jewel When faced with a decision, always ask, 'Which would be the most fun?'
 
Hi,

Try using this as your <frameset> instead:

<FRAMESET ROWS=&quot;155,*,49&quot;> that way the top and bottom will be fixed and the middle will adjust accordingly. Also, there is no need for COLS=&quot;*&quot;

Try that out and see if it helps!

Hope this helps!
greenjumpy.gif
NATE
design@spyderix-designz.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top