How to theme Browse button of a FileUpload control?

Y

yeltsin27

Theming seems only to affect the text box of a FileUpload control, not
the Browse button. Is there any way to theme the button as well?

Thanks,

ChrisN
 
C

Chris Lincoln

I managed to accomplish this using FrontPage while working on a
Sharepoint site a while ago. You can use the style attribute and then
set border-color, border-width, etc. I would imagine a css class would
be effective too, although I have not tried that with a FileUpload
control.

e.g.
<asp:FileUpload ID="FileUpload1" runat="server"
style="border-color:#b8b8b8;"/>

Hope this helps.

-Chris Lincoln
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top