View Full Version : When I minimise my screen in the stages of making my site........


silver_callis
01-18-2004, 10:48 AM
My frames (menu frame, top frame and main frame) all change size with the minimising and I don't want this to happen because I want my graphics to fit exactually to the size without it changing. How do I make it so the frame size stays fixed throughout the screen being minimised?! plz help it really annoys me!!!!

MaGiCSuN
01-18-2004, 12:28 PM
try adding NORESIZE to all <frame> tags. only the <frame> tags not the <frameset> tags :)

Love,
Mirna

pb&j
01-18-2004, 01:41 PM
sounds like you may have set your COLS or ROWS with percentages.
perhaps use just a fixed number instead.

example...
from this...
<frameset cols="20%,80%">
to this...
<frameset cols="200,*">
this would produce a first column of 200 pixels wide and the second column is whatever space left over.