UncleMortis
Programmer
I've got a vertical frames page. I don't want the scroll bar between the links page and the main page and have got rid of it using the frameborder="0" as this is supposedly the "valid" way of making it go. However this still causes a line to appear between the frames. If I use the "invalid" code of border="0" then it works. Am I placing the frameborder in the wrong part of the frameset page? you can view the site and the code I used for the frameset page is as follows:
Code:
<frameset cols="22%,*">
<frame src="links.html" name=links noresize frameborder="0">
<frame src="home.html" name=home>
</frameset>