Click to See Complete Forum and Search --> : frame keeps moving?
warpedmonkey
01-31-2003, 01:43 PM
i have a frame that im using and i got it in the right spot on my web page, but when i go to a higher resolution the frame moves to the right blocking some of the other stuff on the web site how do i make it stay in that exzact postion?
-help
Zach Elfers
01-31-2003, 01:52 PM
It sounds like you are using % to size you frames. To keep it from moving, use an absolute pixel value.
numba_one
01-31-2003, 02:58 PM
i agree with zach that normally happenes if you use %'s
warpedmonkey
01-31-2003, 04:02 PM
how can you give me an example..........
Stefan
01-31-2003, 09:07 PM
Originally posted by warpedmonkey
how can you give me an example..........
It's MUCH easier if you provide a link to your site. Then people can just show you what to replace to fix your problem.
Zach Elfers
01-31-2003, 09:46 PM
<frameset cols="10%,90%">
<frame name="left" src="left.html" noresize />
<frame name="right" src="right.html" noresize />
<noframes>
Your browser doesn't support frames.
</noframes>
</frameset>
See where it says cols="10%,90%"? Change that to an absolute value for example cols="100,*". The asterisk means to use the left over space. Hope that helps.:)