Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/12/2007, 14:19
Avatar de hgp147
hgp147
 
Fecha de Ingreso: diciembre-2006
Ubicación: Buenos Aires, Argentina
Mensajes: 980
Antigüedad: 17 años, 4 meses
Puntos: 36
Re: 800x600 y 1024x768

Hola adecchi, te dejo estas soluciones:

*Hacer una página para cada resolución:

Código HTML:
<html>
<head>

<script language="javascript">

function resolucion(){
 if (screen.width == 800)
 {

location.href = "800x600.htm";

}else{

location.href = "1024x768htm";

}

</script>

</head>
<body onload="resolucion()">
</body>
</html> 


*Diseñar la página a 800x600, y cuando sea una resolución mayor que se centre automaticamente.
(Ejemplo http://aldeamix.com/)

FELIZ NAVIDAD!!!!