Hi,
Is there a way to change the <input type="file"... element(,i.e., the file chooser element) thru CSS?.Help me please!
| SitePoint Sponsor |
Hi,
Is there a way to change the <input type="file"... element(,i.e., the file chooser element) thru CSS?.Help me please!





Do you want to know how to target only that type of input, or what CSS style rules will apply to it?
To target it, you're going to have to either give it/them or their parent a specific id/class:
There's some information on what effect applying styles to form elements (including file types) here:HTML Code:<input type="file" class="blue" /> <div id="blue"> <input type="file" /> </div>
http://456bereastreet.com/archive/20...form_controls/
http://456bereastreet.com/archive/20...form_controls/
thanks got it,
Bookmarks