Hola
Rosa Negra
Esto para la barra de desplazamiento en tu menu izquierdo:
Código:
<html>
<head>
<title>Sin titulo</title>
</head>
<frameset rows="22%,*" cols="*" frameborder="no" framespacing="0" border="0" noresize>
<frame name="arriba" src="arriba.html" frameborder="no" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" scrolling="no" noresize>
<frameset cols="20%,*" cols="*" frameborder="no" framespacing="0" border="0" noresize>
<frame name="derecha" src="menu.html" frameborder="no" margenwidth="0" marginheight="0" leftmargin="0" topmargin="0" scrolling="yes" noresize>
<frame name="izquierda" src="principal.html" frameborder="no" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" scrolling="yes" noresize>
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
Esto para que no te salga la barra horizontal en tu página principal:
Código:
<head>
<style type="text/css">
<!--
body,html
{overflow-x:hidden;
overflow-y:scroll;}
-->
</style>
</head>
Espero que sea esto lo que quieres.
Saludos