I'm building a site using PHP for the navigation section of each page and to to do the general page layout.

To this effect I have created php functions to structure the pages and I fill in the static text specific to each page.

This all works.

I have now got to the point where I am doing a page to send emails...

this uses a FORM with INPUT tags, what is weird is that under IE6 some of the INPUT fields are showing up with yellow
backgrounds!!!!


They all use the same style sheet class, and simply varying the spelling of the field name and label from "emil" to "ail" fixes it!!!

for example the code below is coorrect (no yellowing):
 <tr height=1>
   <td class=label>Emil</td>
   <td>&nbsp</td>
   <td colspan=2>
       <input type=text name=emil size=80 class=finput>
   </td>
 </tr>

but the following code is yellowed:
 <tr height=1>
   <td class=label>Email</td>
   <td>&nbsp</td>
   <td colspan=2>
       <input type=text name=email size=80 class=finput>
   </td>
 </tr>

Now this goes away under Mozilla or Firebird browsers, so I know that this is specific to IE6....

I'd really like to know why this is happening and how to correct this behaviour, and I cannot tell my client to not use IE.

thanks for all your help....

the link below shows the problem in action, note the "Email" and "Emil" sections....
http://geosysllc.ilmtech.com/contact


many thanks,

Ahbaid

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to