PDA

View Full Version : Frames - noresize


mbay
07-03-2005, 05:13 AM
Hello Everyone!

It seems I need a little guidance in how to rectify the "noresize" attribute when using a frame set. Below I have the code.

Thanks in advance for any advise and help,

mbay

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>Welcome!</title>
</head><frameset rows="15%,*" frameborder="0" framespacing="0">
<frame name="button" src="button.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize="noresize">
<frameset cols="20%,*" frameborder="0" framespacing="0">
<frame name="menu" src="menu.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize="noresize">
<frameset rows="95%,*" frameborder="0" framespacing="0">
<frame name="body" src="body.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0" noresize="noresize">
<frame name="info" src="info.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" noresize="noresize">
</frameset>
</frameset>
</frameset><noframes><body></body></noframes></html>

_Aerospace_Eng_
07-03-2005, 05:18 AM
You can only add the noresize to the ones you set a width or height for. Using the * the frame has to resize to take up the rest of the space left.

mbay
07-03-2005, 06:33 AM
Thanks for the help, Aerospace!