tags:

views:

88

answers:

2

I have a FileUpload Control like this

<asp:FileUpload ID="fileuploader" runat="server" />

Now I want to apply css only on the Browse button part

alt text

How can I do this?

+1  A: 

apparently you cannot style them directly with CSS but you can "hack" a new style into them - read the following article for details

http://www.quirksmode.org/dom/inputfile.html

PaulStack
+2  A: 

Styling an input tag with type="file" requires a bit of work, browsers don't behave similarly when you try to style then unfortunately.

There are a few methods of doing so though:

wsanville