Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/02/2011, 14:31
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: ayudaa!!! mi web se ve mal en resoluciones mas pequeñas.!

y observando tu código no encuentro las etiquetas <body></body>

agregándolas debería andar bien

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <title>Chat - Visita Medica Professional</title>
  4. <link type="text/css" rel="stylesheet" href="style.css" />
  5. <script language="javascript" src="js/jquery-1.2.6.min.js"></script>
  6. <script language="javascript">
  7. function recargar(){
  8.     var variable_post="";
  9.     $.post("pp.php", { variable: variable_post }, function(data){
  10.     $("#visor").html(data);
  11.     });
  12. }
  13. </head>
  14.  
  15.     <div id="loginform">
  16.     <form action="index.php" method="post">
  17.         <p>Por Favor coloque su nombre y su ciudad:</p>
  18.         <label for="name">Nombre:</label>
  19.         <input type="text" name="name" id="name" />
  20.         <label for="name">Ciudad:</label>
  21.         <input type="text" name="ciudad" id="ciudad" />
  22.         <input type="submit" name="enter" id="enter" value="Entrar" />
  23.     </form>
  24.     </div>
  25. </body>
  26.     </html>

Última edición por webosiris; 10/02/2011 a las 02:31 Razón: editado a petición del usuario