Frameset auto resize

liunx

Guest
Hi,<br />
<br />
Does anybody know how to stop a frame auto resizing when a user resizes a window, im using dreamweaver and have put in absolute pixel size values but the frames resize themselfs as the user resizes the window making the website look very untidy in 1024x768.<br />
<br />
the website is <!-- w --><a class="postlink" href="http://www.handyman.co.uk">www.handyman.co.uk</a><!-- w --><!--content-->You can use noresize (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html401/present/frames.html#adef-noresize">http://www.w3.org/TR/html401/present/fr ... f-noresize</a><!-- m -->) to keep a frame from being resized.<!--content-->Hi,<br />
<br />
All of the frames have NORESIZE checked in dreamweaver and it still scales the frame leaving horrible gaps on resolutions above 800x600 :(<br />
<br />
any ideas ?<!--content-->Sorry I don't have an answer but I have a similar problem and would also be interested to know of a solution. I am developing one site on two different pcs with two different size screens - the standard 800 wide and my home pc 1024 wide.<br />
When I work on the small, save, swap, open and view on the large screen; my background colors and images, set to 800 or 100% width of the small screen, stay that size so I see tiliing to the right of the screen. In the reverse, when I work big, save big, and view small; my backgrounds are beyond the visible screen. I dddont want to have to set my large screen to 800 wide resolution and pull the window to full screenand the only thing I've heard about but havn't tried yet is to write <body background properties="fixed"></body> I'll let you know how I get on or if I find the right answer<br />
<br />
mimmou<!--content-->Thanks mim,<!--content-->Set the size in pixels for the frames that you do not want to be resized, then create a blank frame with width="*" so that it takes up any remaining space in the browser window once the window is resized.<br />
<br />
The widths of all the frames put together MUST equal 100% of the window width. The code below specifies widths for two of the frames across, and then a blank third frame takes up the slack on larger window sizes.<br />
<br />
<br />
<head><br />
<title>Untitled</title><br />
</head><br />
<br />
<frameset cols="150, 620, *"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"1.html" noresize border="1"></frame><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"2.html" noresize border="1"></frame><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"3.html" scrolling="no"></frame><br />
</frameset><br />
<br />
</html><!--content-->
 
Back
Top