PDA

View Full Version : Frames Help Needed!


darkstar87
03-05-2006, 10:06 PM
When i make frames it makes scroll things does anyone know how to take them out?
<html>
<frameset cols = "25%, 95%">
<frameser rosw = "3, 2">
<frame src ="venus.htm" />
<frame src ="index.html" />
</frameset>
</html>]

Lerura
03-05-2006, 10:27 PM
scrolling="no"will prevent scrollbars appearing
you will need to add this to every frame that should not have scrollbars,like this:
<html>
<frameset cols = "25%, 95%">
<frame src ="venus.htm" scrolling="no" />
<frame src ="index.html" scrolling="no" />
</frameset>
</html>

darkstar87
03-05-2006, 10:34 PM
tyvm appreciate it