Foros del Web » Programando para Internet » PHP »

formulario de contacto acorta fondo de pagina al enviar el mensaje

Estas en el tema de formulario de contacto acorta fondo de pagina al enviar el mensaje en el foro de PHP en Foros del Web. Hola, como andan? tengo un problema, en esta http://www.juegoydesarrollo.com.ar/contacto.php pagina tengo un formulario que anda perfecto, el problema es que cuando envia el mensaje y ...
  #1 (permalink)  
Antiguo 11/12/2012, 11:31
 
Fecha de Ingreso: julio-2011
Mensajes: 113
Antigüedad: 12 años, 9 meses
Puntos: 4
formulario de contacto acorta fondo de pagina al enviar el mensaje

Hola, como andan? tengo un problema, en estahttp://www.juegoydesarrollo.com.ar/contacto.php pagina tengo un formulario que anda perfecto, el problema es que cuando envia el mensaje y aparece el cartel de "enviado correctamente" se acorta el fondo de la web un poco, y queda mal, saben como lo puedo solucionar? gracias.
Código PHP:
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. <head>
  4. <link rel="stylesheet" type="text/css" href="engine1/style.css" />
  5.     <script type="text/javascript" src="engine1/jquery.js"></script>
  6.    <link rel='stylesheet' href='estilos.css'>
  7.         <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'></script>
  8. <script src='funciones.js'></script>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>Taller de psicomotricidad en caba zona oeste y zona sur - Juego y Desarrollo-</title>
  11. <META NAME="google-site-verification" CONTENT="+nxGUDJ4QpAZ5l9Bsjdi102tLVC21AIh5d1Nl23908vVuFHs34="/>
  12. <META NAME="robots" CONTENT="index,follow">
  13. <META NAME="revisit-after" CONTENT="3 days"/>
  14. <style type="text/css">
  15. .fondoinicio {
  16.     background-image: url(imagenes/fondocontacto.jpg);
  17.     background-repeat: no-repeat;
  18.     font-family: Georgia, "Times New Roman", Times, serif;
  19.     font-size: 16px;
  20.     font-style: italic;
  21.     text-align: justify;
  22. }
  23. a:link {
  24.     color: #000;
  25.     text-decoration: none;
  26. }
  27. a:visited {
  28.     text-decoration: none;
  29.     color: #000;
  30. }
  31. a:hover {
  32.     text-decoration: none;
  33.     color: #000;
  34. }
  35. a:active {
  36.     text-decoration: none;
  37.     color: #000;
  38. }
  39. #solo {
  40.     text-align: center;
  41. }
  42. #negra {
  43.     font-weight: bold;
  44. }
  45. justificar {
  46.     text-align: justify;
  47. }
  48. .fondoinicio table tr td p {
  49.     text-align: justify;
  50. }
  51. body {
  52.     background-image: url(fondo.jpg);
  53.     background-repeat: repeat;
  54. }
  55. </style></head>
  56. <body>
  57. <?php
  58.         if(isset($_POST['boton'])){
  59.             if($_POST['nombre'] == ''){
  60.                 $error1 = '<span class="error">Ingrese su nombre</span>';
  61.             }else if($_POST['email'] == '' or !preg_match("/^[a-zA-Z0-9_\.\-]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$/",$_POST['email'])){
  62.                 $error2 = '<span class="error">Ingrese un email correcto</span>';
  63.             }else if($_POST['telefono'] == ''){
  64.                 $error3 = '<span class="error">Ingrese un telefono</span>';
  65.             }else if($_POST['mensaje'] == ''){
  66.                 $error4 = '<span class="error">Ingrese un mensaje</span>';
  67.             }else{         
  68.                 $dest = "[email protected]"; //Email de destino
  69.                 $nombre = $_POST['nombre'];
  70.                 $email = $_POST['email'];
  71.                 $telefono = $_POST['telefono']; //Telefono
  72.                 $cuerpo = $_POST['mensaje']; //Cuerpo del mensaje
  73.                 //Cabeceras del correo
  74.                 $headers = "From: $nombre $email\r\n"; //Quien envia?
  75.                 $headers .= "X-Mailer: PHP5\n";
  76.                 $headers .= 'MIME-Version: 1.0' . "\n";
  77.                 $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; //
  78.                
  79.                 if(mail($dest,$telefono,$cuerpo,$headers)){
  80.                    
  81.                     $sql = "INSERT INTO `cf` (`nombre`,`email`,`telefono`,`mensaje`) VALUES ('{$_POST['nombre']}','{$_POST['email']}','{$_POST['telefono']}','{$_POST['mensaje']}')";
  82.                     $result = '<div class="result_ok">Email enviado correctamente!</div>'; 
  83.                     // si el envio fue exitoso reseteamos lo que el usuario escribio:
  84.                     $_POST['nombre'] = '';
  85.                     $_POST['email'] = '';
  86.                     $_POST['telefono'] = '';
  87.                     $_POST['mensaje'] = '';
  88.  
  89.                 }else{
  90.                     $result = '<div class="result_fail">Hubo un error al enviar el mensaje!</div>';
  91.                 }
  92.             }
  93.         }
  94.     ?>
  95. <table width="994" border="0" align="center">
  96.   <tr>
  97.     <td width="988" height="1134" valign="top" class="fondoinicio"><p><br />
  98.       <br />
  99.       <br />
  100.       <br />
  101.       <br />
  102.       <br />
  103.     </p>
  104.       <p>&nbsp;</p>
  105.       <table width="740" border="0" align="center">
  106.         <tr>
  107.           <td height="59" id="menu"><table width="740" border="0" align="center">
  108.             <tr>
  109.               <td width="93" height="35" align="center"><a href="index.html" target="_self">Inicio</a></td>
  110.               <td width="136" align="center"><a href="tallerdejuego.html" target="_self">Taller de juego</a></td>
  111.               <td width="106" align="center"><a href="educacion.html" target="_self">Educación</a></td>
  112.               <td width="73" align="center"><a href="terapia.html" target="_self">Terapia</a></td>
  113.               <td width="188" align="center"><a href="trabajoconpadres.html" target="_self">Trabajo con padres</a></td>
  114.               <td width="102" align="center"><a href="contacto.php" target="_self">Contacto</a></td>
  115.               <td width="12" align="center">&nbsp;</td>
  116.             </tr>
  117.           </table></td>
  118.         </tr>
  119.       </table>
  120.       <br />
  121.       <table width="715" border="0" align="center">
  122.         <tr>
  123.         <td class="ws_images"><div id="wowslider-container1">
  124.     <div class="ws_images"><ul>
  125. <li><img src="data1/images/10b.jpg" alt="" title="" id="wows1_0"/></li>
  126. <li><img src="data1/images/13b.jpg" alt="" title="" id="wows1_1"/></li>
  127. <li><img src="data1/images/14b.jpg" alt="" title="" id="wows1_2"/></li>
  128. <li><img src="data1/images/3b.jpg" alt="" title="" id="wows1_3"/></li>
  129. </ul></div>
  130. <div class="ws_bullets"><div>
  131. <a href="#" title="">1</a>
  132. <a href="#" title="">2</a>
  133. <a href="#" title="">3</a>
  134. <a href="#" title="">4</a>
  135. </div></div>
  136. <a class="wsl" href="http://wowslider.com">jQuery Slider Demo by WOWSlider.com v2.4</a>
  137.     <div class="ws_shadow"></div>
  138.     </div>
  139.     <script type="text/javascript" src="engine1/wowslider.js"></script>
  140.     <script type="text/javascript" src="engine1/script.js"></script>&nbsp;</td>
  141.       </tr>
  142.   </table>
  143.       <br />
  144.       <br />
  145.       <br />
  146.       <table width="589" border="0">
  147.         <tr>
  148.       <td width="35">&nbsp;</td>
  149.       <td width="544" colspan="2"><img src="imagenes/separadorarriba.png" width="547" height="74" /></td>
  150.     </tr>
  151.     <tr>
  152.       <td height="131" valign="top">&nbsp;</td>
  153.       <td><form class='contacto' method='POST' action='contacto.php'>
  154.             <div><label>Tu Nombre:</label><input type='text' class='nombre' name='nombre' value='<?php echo $_POST['nombre']; ?>'><?php echo $error1 ?></div>
  155.             <div><label>Tu Email:</label><input type='text' class='email' name='email' value='<?php echo $_POST['email']; ?>'><?php echo $error2 ?></div>
  156.             <div><label>Telefono:</label><input type='text' class='telefono' name='telefono' value='<?php echo $_POST['telefono']; ?>'><?php echo $error3 ?></div>
  157.             <div><label>Mensaje:</label><textarea rows='6' class='mensaje' name='mensaje'><?php echo $_POST['mensaje']; ?></textarea><?php echo $error4 ?></div>
  158.             <div><input type='submit' value='Envia Mensaje' class='boton' name='boton'></div>
  159.             <?php echo $result; ?>
  160.         </form></p></td>
  161.       <td valign="top"><br />
  162.         <br />
  163.         <br />
  164.         <br />
  165.         <p> />
  166.         <br />
  167.         <br />
  168.         </p>
  169.         <p><br />
  170.          <br />
  171.           <br />
  172.           </p></td>
  173.     </tr>
  174.     <tr>
  175.       <td height="44">&nbsp;</td>
  176.       <td colspan="2" valign="top"><img src="imagenes/separadorphp.png" width="547" height="42" /></td>
  177.     </tr>
  178. </table>
  179.   <br /></td>
  180.   </tr>
  181. </table>
  182. <table width="995" border="0" align="center">
  183.   <tr>
  184.     <td height="21" align="center">Pagina realizada por <a href="http://nldweb.com.ar/" target="_blank">nldweb.com.ar</a></td>
  185.   </tr>
  186. </table>
  187. </body>
  188. </html>
  #2 (permalink)  
Antiguo 11/12/2012, 11:33
 
Fecha de Ingreso: julio-2011
Mensajes: 113
Antigüedad: 12 años, 9 meses
Puntos: 4
Respuesta: formulario de contacto acorta fondo de pagina al enviar el mensaje

Código CSS:
Ver original
  1. .contacto{
  2.     border: 0px solid #CED5D7;
  3.     border-radius: 0px;
  4.     padding: 20px 25px 20px;
  5.     margin-top: 0px;
  6.     background-color: transparent;
  7.     box-shadow: 0px 0px 0px #B5C1C5, 0 0 0 0px #EEF5F7 inset;
  8. }
  9. .contacto label{
  10.     display: block;
  11.     font-weight: bold;
  12.     font-size: 12px;
  13.     color: #FFF;
  14. }
  15. .contacto div{
  16.     margin-bottom: 5px;
  17. }
  18. .contacto input[type='text'], .contacto textarea{
  19.     background-color: #09F;
  20.     padding: 2px 0px;
  21.     width: 200px;
  22.     border: 2px solid #FFF;
  23.     resize: none;
  24.     box-shadow:0 0 0 0px #FFFFFF;
  25.     margin: 2px 0;
  26. }
  27. .contacto input[type='text']:focus, .contacto textarea:focus{
  28.     outline: none;
  29.     box-shadow:0 0 0 0px #dde9ec;
  30. }
  31. .contacto input[type='text'].invalido, .contacto textarea.invalido{
  32.     box-shadow:0 0 0 0px #FFC9C9;
  33. }
  34. .contacto input[type='submit']{
  35.     border: 1px solid #CED5D7;
  36.     box-shadow:0 0 0 1px #EEF5F7;
  37.     padding: 2px 8px;
  38.     border-radius: 10px;
  39.     font-weight: bold;
  40.     text-shadow: 1px 1px 0px white;
  41.    
  42.     background: #e4f1f6;
  43.     background: -moz-linear-gradient(top, #e4f1f6 0%, #cfe6ef 100%);
  44.     background: -webkit-linear-gradient(top, #e4f1f6 0%,#cfe6ef 100%);
  45. }
  46. .contacto input[type='submit']:hover{
  47.     background: #edfcff;
  48.     background: -moz-linear-gradient(top, #edfcff 0%, #cfe6ef 100%);
  49.     background: -webkit-linear-gradient(top, #edfcff 0%,#cfe6ef 100%);
  50. }
  51. .contacto input[type='submit']:active{
  52.     background: #cfe6ef;
  53.     background: -moz-linear-gradient(top, #cfe6ef 0%, #edfcff 100%);
  54.     background: -webkit-linear-gradient(top, #cfe6ef 0%,#edfcff 100%);
  55. }
  56. .error{
  57.     background-color: #BC1010;
  58.     border-radius: 4px 4px 4px 4px;
  59.     color: white;
  60.     font-weight: bold;
  61.     margin-left: 16px;
  62.     margin-top: 6px;
  63.     padding: 6px 12px;
  64.     position: absolute;
  65. }
  66. .error:before{
  67.     border-color: transparent #BC1010 transparent transparent;
  68.     border-style: solid;
  69.     border-width: 6px 8px;
  70.     content: "";
  71.     display: block;
  72.     height: 0;
  73.     left: -16px;
  74.     position: absolute;
  75.     top: 8px;
  76.     width: 0;
  77. }
  78. .result_fail{
  79.     background: none repeat scroll 0 0 #BC1010;
  80.    border-radius: 1px 1px 1px 1px;
  81.     color: white;
  82.     font-weight: bold;
  83.     padding: 1px 1px;
  84.     text-align: center;
  85. }
  86. .result_ok{
  87.     background: none repeat scroll 0 0 #1EA700;
  88.     border-radius: 1px 1px 1px 1px;
  89.     color: white;
  90.     font-weight: bold;
  91.     padding: 1px 1px;
  92.     text-align: center;
  93.     width: 150px;
  94. }
  95.  
  96. .error{
  97.     font-size: 12px;
  98.     background-color: #DC143C;
  99.     padding: 6px 12px;
  100.     border-radius: 4px;
  101.     color: white;
  102.     font-weight: bold;
  103.     margin-left: 16px;
  104.     margin-top: 2px;
  105.     position: absolute;
  106. }
  107. .error:before{ /* Este es un truco para crear una flechita */
  108.     content: '';
  109.     border-top: 8px solid transparent;
  110.     border-bottom: 8px solid transparent;
  111.     border-right: 8px solid #DC143C;
  112.     border-left: 8px solid transparent;
  113.     left: -16px;
  114.     position: absolute;
  115.     top: 5px;
  116. }
  117.  
  118. .result_fail{
  119.     background: none repeat scroll 0 0 #BC1010;
  120.     border-radius: 1px 1px 1px 1px;
  121.     color: white;
  122.     font-weight: bold;
  123.     padding: 10px 10px;
  124.     text-align: center;
  125.     width: 150px;
  126. }
  127. .result_ok{
  128.     background: none repeat scroll 0 0 #1EA700;
  129.     border-radius: 1px 1px 1px 1px;
  130.     color: white;
  131.     font-weight: bold;
  132.     padding: 10px 10px;
  133.     text-align: center;
  134.     width: 150px;
  135. }
  #3 (permalink)  
Antiguo 11/12/2012, 11:34
 
Fecha de Ingreso: julio-2011
Mensajes: 113
Antigüedad: 12 años, 9 meses
Puntos: 4
Respuesta: formulario de contacto acorta fondo de pagina al enviar el mensaje

Cita:
Iniciado por 3lineas Ver Mensaje
Hola, como andan? tengo un problema, en esta pagina tengo un formulario que anda perfecto, el problema es que cuando envia el mensaje y aparece el cartel de "enviado correctamente" se acorta el fondo de la web un poco, y queda mal, saben como lo puedo solucionar? gracias.
Código PHP:
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. <head>
  4. <link rel="stylesheet" type="text/css" href="engine1/style.css" />
  5.     <script type="text/javascript" src="engine1/jquery.js"></script>
  6.    <link rel='stylesheet' href='estilos.css'>
  7.         <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'></script>
  8. <script src='funciones.js'></script>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <META NAME="google-site-verification" CONTENT="+nxGUDJ4QpAZ5l9Bsjdi102tLVC21AIh5d1Nl23908vVuFHs34="/>
  11. <META NAME="robots" CONTENT="index,follow">
  12. <META NAME="revisit-after" CONTENT="3 days"/>
  13. <style type="text/css">
  14. .fondoinicio {
  15.     background-image: url(imagenes/fondocontacto.jpg);
  16.     background-repeat: no-repeat;
  17.     font-family: Georgia, "Times New Roman", Times, serif;
  18.     font-size: 16px;
  19.     font-style: italic;
  20.     text-align: justify;
  21. }
  22. a:link {
  23.     color: #000;
  24.     text-decoration: none;
  25. }
  26. a:visited {
  27.     text-decoration: none;
  28.     color: #000;
  29. }
  30. a:hover {
  31.     text-decoration: none;
  32.     color: #000;
  33. }
  34. a:active {
  35.     text-decoration: none;
  36.     color: #000;
  37. }
  38. #solo {
  39.     text-align: center;
  40. }
  41. #negra {
  42.     font-weight: bold;
  43. }
  44. justificar {
  45.     text-align: justify;
  46. }
  47. .fondoinicio table tr td p {
  48.     text-align: justify;
  49. }
  50. body {
  51.     background-image: url(fondo.jpg);
  52.     background-repeat: repeat;
  53. }
  54. </style></head>
  55. <body>
  56. <?php
  57.         if(isset($_POST['boton'])){
  58.             if($_POST['nombre'] == ''){
  59.                 $error1 = '<span class="error">Ingrese su nombre</span>';
  60.             }else if($_POST['email'] == '' or !preg_match("/^[a-zA-Z0-9_\.\-]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$/",$_POST['email'])){
  61.                 $error2 = '<span class="error">Ingrese un email correcto</span>';
  62.             }else if($_POST['telefono'] == ''){
  63.                 $error3 = '<span class="error">Ingrese un telefono</span>';
  64.             }else if($_POST['mensaje'] == ''){
  65.                 $error4 = '<span class="error">Ingrese un mensaje</span>';
  66.             }else{         
  67.                 $dest = "[email protected]"; //Email de destino
  68.                 $nombre = $_POST['nombre'];
  69.                 $email = $_POST['email'];
  70.                 $telefono = $_POST['telefono']; //Telefono
  71.                 $cuerpo = $_POST['mensaje']; //Cuerpo del mensaje
  72.                 //Cabeceras del correo
  73.                 $headers = "From: $nombre $email\r\n"; //Quien envia?
  74.                 $headers .= "X-Mailer: PHP5\n";
  75.                 $headers .= 'MIME-Version: 1.0' . "\n";
  76.                 $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; //
  77.                
  78.                 if(mail($dest,$telefono,$cuerpo,$headers)){
  79.                    
  80.                     $sql = "INSERT INTO `cf` (`nombre`,`email`,`telefono`,`mensaje`) VALUES ('{$_POST['nombre']}','{$_POST['email']}','{$_POST['telefono']}','{$_POST['mensaje']}')";
  81.                     $result = '<div class="result_ok">Email enviado correctamente!</div>'; 
  82.                     // si el envio fue exitoso reseteamos lo que el usuario escribio:
  83.                     $_POST['nombre'] = '';
  84.                     $_POST['email'] = '';
  85.                     $_POST['telefono'] = '';
  86.                     $_POST['mensaje'] = '';
  87.  
  88.                 }else{
  89.                     $result = '<div class="result_fail">Hubo un error al enviar el mensaje!</div>';
  90.                 }
  91.             }
  92.         }
  93.     ?>
  94. <table width="994" border="0" align="center">
  95.   <tr>
  96.     <td width="988" height="1134" valign="top" class="fondoinicio"><p><br />
  97.       <br />
  98.       <br />
  99.       <br />
  100.       <br />
  101.       <br />
  102.     </p>
  103.       <p>&nbsp;</p>
  104.       <table width="740" border="0" align="center">
  105.         <tr>
  106.           <td height="59" id="menu"><table width="740" border="0" align="center">
  107.             <tr>
  108.               <td width="93" height="35" align="center"><a href="index.html" target="_self">Inicio</a></td>
  109.               <td width="136" align="center"><a href="tallerdejuego.html" target="_self">Taller de juego</a></td>
  110.               <td width="106" align="center"><a href="educacion.html" target="_self">Educación</a></td>
  111.               <td width="73" align="center"><a href="terapia.html" target="_self">Terapia</a></td>
  112.               <td width="188" align="center"><a href="trabajoconpadres.html" target="_self">Trabajo con padres</a></td>
  113.               <td width="102" align="center"><a href="contacto.php" target="_self">Contacto</a></td>
  114.               <td width="12" align="center">&nbsp;</td>
  115.             </tr>
  116.           </table></td>
  117.         </tr>
  118.       </table>
  119.       <br />
  120.       <table width="715" border="0" align="center">
  121.         <tr>
  122.         <td class="ws_images"><div id="wowslider-container1">
  123.     <div class="ws_images"><ul>
  124. <li><img src="data1/images/10b.jpg" alt="" title="" id="wows1_0"/></li>
  125. <li><img src="data1/images/13b.jpg" alt="" title="" id="wows1_1"/></li>
  126. <li><img src="data1/images/14b.jpg" alt="" title="" id="wows1_2"/></li>
  127. <li><img src="data1/images/3b.jpg" alt="" title="" id="wows1_3"/></li>
  128. </ul></div>
  129. <div class="ws_bullets"><div>
  130. <a href="#" title="">1</a>
  131. <a href="#" title="">2</a>
  132. <a href="#" title="">3</a>
  133. <a href="#" title="">4</a>
  134. </div></div>
  135. <a class="wsl" href="http://wowslider.com">jQuery Slider Demo by WOWSlider.com v2.4</a>
  136.     <div class="ws_shadow"></div>
  137.     </div>
  138.     <script type="text/javascript" src="engine1/wowslider.js"></script>
  139.     <script type="text/javascript" src="engine1/script.js"></script>&nbsp;</td>
  140.       </tr>
  141.   </table>
  142.       <br />
  143.       <br />
  144.       <br />
  145.       <table width="589" border="0">
  146.         <tr>
  147.       <td width="35">&nbsp;</td>
  148.       <td width="544" colspan="2"><img src="imagenes/separadorarriba.png" width="547" height="74" /></td>
  149.     </tr>
  150.     <tr>
  151.       <td height="131" valign="top">&nbsp;</td>
  152.       <td><form class='contacto' method='POST' action='contacto.php'>
  153.             <div><label>Tu Nombre:</label><input type='text' class='nombre' name='nombre' value='<?php echo $_POST['nombre']; ?>'><?php echo $error1 ?></div>
  154.             <div><label>Tu Email:</label><input type='text' class='email' name='email' value='<?php echo $_POST['email']; ?>'><?php echo $error2 ?></div>
  155.             <div><label>Telefono:</label><input type='text' class='telefono' name='telefono' value='<?php echo $_POST['telefono']; ?>'><?php echo $error3 ?></div>
  156.             <div><label>Mensaje:</label><textarea rows='6' class='mensaje' name='mensaje'><?php echo $_POST['mensaje']; ?></textarea><?php echo $error4 ?></div>
  157.             <div><input type='submit' value='Envia Mensaje' class='boton' name='boton'></div>
  158.             <?php echo $result; ?>
  159.         </form></p></td>
  160.       <td valign="top"><br />
  161.         <br />
  162.         <br />
  163.         <br />
  164.         <p> />
  165.         <br />
  166.         <br />
  167.         </p>
  168.         <p><br />
  169.          <br />
  170.           <br />
  171.           </p></td>
  172.     </tr>
  173.     <tr>
  174.       <td height="44">&nbsp;</td>
  175.       <td colspan="2" valign="top"><img src="imagenes/separadorphp.png" width="547" height="42" /></td>
  176.     </tr>
  177. </table>
  178.   <br /></td>
  179.   </tr>
  180. </table>
  181. <table width="995" border="0" align="center">
  182.   <tr>
  183.     <td height="21" align="center">Pagina realizada por <a href="http://nldweb.com.ar/" target="_blank">nldweb.com.ar</a></td>
  184.   </tr>
  185. </table>
  186. </body>
  187. </html>
  #4 (permalink)  
Antiguo 11/12/2012, 11:36
 
Fecha de Ingreso: julio-2011
Mensajes: 113
Antigüedad: 12 años, 9 meses
Puntos: 4
Respuesta: formulario de contacto acorta fondo de pagina al enviar el mensaje

quise editar el tema pero me lo edita como respuesta :S

Etiquetas: contacto, formulario, html, mensaje, sql, usuarios
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 12:03.