Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 4 down vote accepted

No, what you can do is a (ugly) workaround, but largely used

  1. Create a normal input and a image
  2. Create a hidden file input
  3. When the user click on the image, you simulate a click on the file input
  4. When file input change, you pass it's value to the normal input (so user can see the path)

Here you can see a full explanation, along with code:

http://www.quirksmode.org/dom/inputfile.html

share|improve this answer

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;

share|improve this answer

Unfortunately you can't style the <input type=file> element. It is specified that it is up to the browser how it looks.

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.