hello! i just recently designed my website
www.kemparts.co.nr. this was my first time using html.
when making this i used html and created frames and tables.
i found if u have more than two frame rows on your index, scroll bars will appear when the screen is smaller. one way around this is placing scrolling="no" in your frames html e.g. <frame noresize="noresize" src="logoframe.htm" scrolling="no">
this stops it from being able to scroll and stops the user from being able to change the size of the frame.
now you have done this u might find that the frames change size when the screen is smaller. the way around this is to create a permanent frame around your main frame. e.g.
all together there will be 3 frame top, left side, and main
set the top and left side frames to a fixed dimension and place a star for the main frame
<frameset rows="120, *" border="0" >
<frameset cols="161,*" border="0">
this will keep the top and side frame always the same size but will allow the main frame to adjust, which i assunme you would allow scrolling with.
so taht will sort out all your scroll bar problems.
also if your background is a picture and moves whenever you scroll, type bgproperties="fixed" in the correct frame.htm e.g.
<body background="MainBG.gif" bgproperties="fixed">,
ok so thats you sorted, now someone help me!
i have the problem that when viewed in different browser sizes users cannot always see my full bg image, now i wonder, is there a way to set it so it adjusts to each screen res?