[thelist] site check

Scott Schrantz scotts at rci-nv.com
Fri Mar 15 11:23:00 CST 2002


> -----Original Message-----
> From: Paul [mailto:rixel82 at zonnet.nl]
>
> Hi,
>
> I have a problem with resizing. At my screen (1025x768) it
> looks ok but at other resolutions it looks awfull.
> Would someone take a look it at (http://www.americanmusclecars.nl).

Your problem is in your frameset page. Your frames are sized using
percentages, but your menu page is a fixed width. The left frame is set to
25%. At 1024x768 resolution, the frame is 25%, or 256 pixels. At lower
resolutions, like 800x600, the frame is still 25%, or 200 pixels. And so on.
The frame gets smaller as the window gets smaller. To stop that menu frame
from shrinking, you need to change your frames:
 <frameset cols="25%,75%" framespacing="0" frameborder="0">
needs to become
 <frameset cols="250,*" framespacing="0" frameborder="0">
Play around with that 250 number until you find something that looks just
right. Or get rid of the frames and make the whole page one big tabled
layout.



More information about the thelist mailing list