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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lock Frame Dimensions for One Frameset 1

Status
Not open for further replies.

Michael42

Programmer
Oct 8, 2001
1,454
US
Hello,

Using standard HTML 3.2 frames I want to ensure if a user resizes their browser that my top (header.html) frame page does not resize vertically and get chopped off.

Here is my index.html
Code:
<html>
<frameset rows="235,800" FRAMEBORDER="0" FRAMESPACING="0" BORDER="0">
  [COLOR=green]<!-- I want to lock this frame's row (height)[/color] --> 
  <frame src="header.html">

  <frameset cols="175,600" >
      <frame name="left"   src="left_home.html">
	  <frame name="detail" src="pages/about.html">
  </frameset> 
</frameset>
</html>

Though I have it set to 235 it still gets chopped off when the browser is resized. Maybe I am using frames wrong?

What can you recommend?

Thanks,

Michael42
 
Sorry - I should have mentioend, it goes on the frame element:

Code:
<frame noresize="true" ... >

It's been a long while since I've used frames (for some odd reason! [bigears], so had to look it up ;-))

Dan

Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
BillyRayPreachersSon,

Thanks very much - that was what I was looking for! :)

-Michael42
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top