Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/11/2006, 16:21
T_O_N_N_Y
 
Fecha de Ingreso: octubre-2006
Ubicación: Quart de Poblet, Valencia
Mensajes: 767
Antigüedad: 17 años, 6 meses
Puntos: 8
Para quitar las 2 barras :
Código PHP:
<style>
body {overflow-y:hidden;overflow-x:hidden;}
</
style
para quitar sólo la de abajo:
Código PHP:
<style>
body {overflow-x:hidden;}
</
style
Para quitar sólo la de la derecha:
Código PHP:
<style>
body {overflow-y:hidden;}
</
style
También puedes utilizar <body scroll=no> pero solo te funcionará con IE creo.