Irina,
Am Freitag, 4. Februar 2005 um 05:50:36 haben Sie geschrieben:
IA> Does anybody knows how to set the width of a file input field in Firefox?
Take a look at the form.css in res under your firefox installation
directory. There you will find the following styling:
/* file selector */
input[type="file"] {
-moz-appearance: none;
white-space: nowrap;
cursor: default;
-moz-binding: none;
padding: 0 !important;
border-style: none !important;
}
input[type="file"] > input[type="text"] {
border-color: inherit;
background-color: inherit;
color: inherit;
font-size: inherit;
height: inherit;
}
/* button part of file selector */
input[type="file"] > input[type="button"] {
height: inherit;
font-size: inherit;
}
Feel free to override the defaults. :)
Martin.
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************