Firefox Field Width

Thank you for taking the time to read this. I am trying to extend the width of a field. I have been able to get it to work in IE using width=“400” in the style properties. However it does not seem to be able to work for Firefox. Does anyone know how I might be able to get this working properly?

Thanks Again

Subject: Firefox Field Width

IE’s an idiot. All non-zero dimensions in CSS require a unit (whereas in HTML they don’t) and cannot have quotation marks (whereas in HTML 4+ they require quotes). Make it:

width=400px;

and FF, Safari and Opera will thank you.

Subject: RE: Firefox Field Width

Hi Stan,

I made the change in the properties of my text field, Html > style but it still does not make my field width longer, any suggestions

Subject: RE: Firefox Field Width

Try SIZE instead of WIDTH

Subject: RE: Firefox Field Width

Thank you, that worked Great!