I want to change look and feel of file upload field can i do with css, I tried but failed. I want to change the color of browse button to white and also text color to blue. any idea? thanks.
button { background:#ffffff; color:#0000ff; } Code (markup): This will change all buttons. Otherwise assign it a class: <input type="submit" class="submit" value="Click Me" /> Code (markup): .submit { background:#ffffff; color:#0000ff; } Code (markup):