Coloured Browse Button?

liunx

Guest
Hi I was wondering if it was possible to customize a browse button (its for a image upload script on my site). Like background color text color etc. Thxyup
asign it a class and set the attrubutes like anything else like
<input type="button" value="red" class="red">

.red
{
background-color:red;
}Im sorry noobish mistake:
the code of my "browse button":
<input type=file name=bestand>

Is that possible to?

All my other buttons style as they are suppose to exept for "browse"
My css code is:

textarea, select, input {

font-family: Tahoma;
background-color: #202B41;
color: #D9D9D9;
font-size: 11px;
border-top: 1px solid #000000;
border-right: 1px solid #999999;
border-left: 1px solid #000000;
border-bottom: 1px solid #999999;
margin-top: 1px;
}Do not think you can change the look of the browse button.
Eric
 
Back
Top