I am building a website in HTML and using FORMS. I have inserted a window for a visitor to the site to send me a file using a FORM instruction "FILE INPUT". The syntax being:
<input type="hidden" name="MAX_FILE_SIZE" value="500" />
<input name="file" type="file" />
This gives a default block to enter your file source, with a button to the right labelled "Browse..." Is it possible to edit these parameters? eg. I wish to make the block for the file source bigger. How? I want to place the button centrally below the block. How? I want to change the label on the button from "Browse..." to "BROWSE" How do I edit the above syntax to get the results I require?
<input type="hidden" name="MAX_FILE_SIZE" value="500" />
<input name="file" type="file" />
This gives a default block to enter your file source, with a button to the right labelled "Browse..." Is it possible to edit these parameters? eg. I wish to make the block for the file source bigger. How? I want to place the button centrally below the block. How? I want to change the label on the button from "Browse..." to "BROWSE" How do I edit the above syntax to get the results I require?