Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Form not showing text

New Here ,
Feb 23, 2011 Feb 23, 2011

Hello guys,

I am trying to create a simple insert form using the dreamweaver insert wizard, everything looks great but when I put the page that has the form in the server it is not showing the text of every text field.

This is how the page looks in dreamweaver, also I do not know why there is a light blue in the background of the form.

Screen shot 2011-02-23 at 10.26.29 PM.png

This is how the page looks when it is on my webserver

Screen shot 2011-02-23 at 10.30.34 PM.png

I tought the problema was the color of the text, I tried using another color also made them hiperlinks and it is not showing that either.

What could be the issue?

Thanks in advance

TOPICS
Server side applications
568
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 23, 2011 Feb 23, 2011
What could be the issue?

The issue with your image is obvious: text is missing from the second image that you have provided. I love that game photohunt where you discover the differences between two images. Oh you meant what is the issue with the code!!! Well, coincidently, no one can tell you that because of your epic fail in providing a link to the page in question so that one can determine what the problem maybe by examining the code. There's no mind readers here and no one is over your shoulder looking at your screen. Help us help you by providing the code.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 24, 2011 Feb 24, 2011

Hello,

Thanks a lot for your answer, here is the link of the site

http://www.lanacionalsa.com/aplicaciones/rutas/vendedores/insertar.php

I was trying to attach the page so you can see the code but I couldn't do it.

Thanks for your help.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 24, 2011 Feb 24, 2011
LATEST

I took a quick look at your code and saw a lot of things that are cause for concern. For the topic of discussion I noticed this. Note the font-size of the defined class. Also you have multiple id's in your page. ID's should only be used once in a page. For multiple instances on the same page use class instead of an ID.

.clr {
     clear:both;
     padding:0;
     margin:0;
     width:100%;
     font-size:0;
     line-height:0;
}


          <div class="clr">
            <p> </p>
            <form action="/aplicaciones/rutas/vendedores/insertar.php?" method="post" name="form2" id="form2">
              <table align="center">
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Cedula</a>:</td>
                  <td><input type="text" name="cedula" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Nombre</a>:</td>
                  <td><input type="text" name="nombre" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Apellido1</a>:</td>
                  <td><input type="text" name="apellido1" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Apellido2</a>:</td>
                  <td><input type="text" name="apellido2" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Emai</a>l:</td>
                  <td><input type="text" name="email" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Telefono</a>:</td>
                  <td><input type="text" name="telefono" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" id="insertartabla"><a href="#">Celular</a>:</td>
                  <td><input type="text" name="celular" value="" size="32" /></td>
                </tr>
                <tr valign="baseline">
                  <td align="right" nowrap="nowrap" id="insertartabla"> </td>
                  <td><input type="submit" value="Insertar" /></td>
                </tr>
              </table>
              teetesfsdfsdfsdsfsfsfsd
              <input type="hidden" name="MM_insert" value="form2" />
            </form>
            <p> </p>
<p> </p>
            <p> </p>
            <p> </p>
            <p> </p>
          </div>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines