Here is my file upload form
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="filetoupload" id="filetoupload" onchange="this.form.submit();">
</form>
It makes a 'choose file' button to select a file to upload, but how do style this button in css, as in change the colour, size, position and font?
I have tried input[type=submit] {}
but that doesn't seem to work
Also, how can I change the words on the button from 'choose file' to 'Upload' ?