Is there a way to hide the browse button and only leave the text box that works in all browsers?
I have tried setting the margins but they show up different in each browser
|
|
|
No, what you can do is a (ugly) workaround, but largely used
Here you can see a full explanation, along with code: |
|||
|
|
|
You may just without making the element hidden, simply make it transparent by making its opacity to 0. Making the input file hidden will make it STOP working. So DON'T DO THAT.. Here you can find an example for a transparent Browse operation; |
||||
|
|
|
Unfortunately you can't style the This is for security reasons -- the idea being that users could be duped into uploading a file without realising it if the file field was styled not to look like one. For the same reason, you will find yourself restricted in what you can do to the field with Javascript - you won't be able to modify it's value, for example, as you could with other fields. In addition, all browsers actually style this field differently -- some of them only provide a button, and don't even show the text field part of it. This is because they are trying to make it look consistent with the browser's own look-and-feel (ie Safari makes it look significantly different to other browsers). |
|||
|
|