I have used some css to change the background colour of the browse button for
<input type="file">
You can see it here: JSfiddle
The problem I am having is that it does work for chrome (it will show as a black button with white text)
But it will not change the background colour for IE?
I am at a loss with what to do with this to make it work
HTML:
<input type="file">
CSS:
input[type=file] {
border:none !important;
background-color:#F3282B;
background-image:none;
}
input[type=file]::-webkit-file-upload-button {
border: none;
margin: 0;
padding: 0;
-webkit-appearance: button;
width: 100px;
background:#000 !important;
color:#fff;
}