Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i was just wondering how you can create you own custom file upload button, because the best i can do is

enter image description here

and what i want to achieve is

enter image description here

if there is anyway of doing this i would be very thankful, and please can i have answers that explain how to do it with code and not answers with links to websites that allow you to download a button or something like that,Thank You :)

share|improve this question
It's a very big topic to explain how to do this :) – Karolis Jun 23 '11 at 22:20
@Karolis, there is a neat css trick that takes little explaination. See my answer below. – natedavisolds Jun 23 '11 at 22:49
@natedavisolds The author asked for explanation of how to do this. You gave a working example. I may be wrong but according to the question it seems that the author has very little knowledge about how HTML/CSS/JavasScript works. So that's why I think it's a very big topic to explain how to do this :) – Karolis Jun 24 '11 at 8:19
@karolis - ok. fair enough. – natedavisolds Jun 24 '11 at 14:57

4 Answers

up vote 11 down vote accepted

Although some of these answers will create something that looks like you want it to work, they will break down when they try to perform the way that you expect. The file input doesn't style well directly and you will have trouble trying it. However, there is a trick.

The trick is to turn the opacity of the input to 0 and then change the background underneath it to the button style that you want.

Given this html:

<div class="file_button_container"><input type="file" /></div>

Use this css:

  .file_button_container,
  .file_button_container input {
       height: 47px;
       width: 263px;
   }

   .file_button_container {
       background: transparent url(http://i.stack.imgur.com/BT5AB.png) left top no-repeat;
   }

   .file_button_container input {
       opacity: 0;
   }

Here it is in action: http://jsfiddle.net/t6EKv/1/

share|improve this answer
2  
great solution. i'd like to add support in IE7 and IE8 can be done by including "-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0);" – Julian Apr 17 '12 at 20:39
The JSfiddle doesn't work in Chrome anymore? – streetlight Oct 12 '12 at 17:49
@streetlight this worked for me in the latest Chrome for Mac, but I had to click run at the top – natedavisolds Oct 16 '12 at 15:56
Doesn't seem to work in any browser anymore – Leo Hernandez Mar 13 at 3:19
@LeoHernandez there is a problem with the image uri... which I don't control. Sometimes it can pull the image and sometime it can't. It isn't a problem with the code though. – natedavisolds Mar 18 at 15:31
show 1 more comment

Here is an approximation to the button you want with css/html

html

<button class="upload">Choose a file to upload...</button>

css

.upload{
    border:0;
    padding:10px 20px;
    -moz-border-radius:10px;
    border-radius:10px;
    background-color:#4488ee;
    color:white;
    font-size:16px;
}

demo http://jsfiddle.net/gaby/qdX5d/2/

for rounded corners in pre-IE9 use css3pie

share|improve this answer

Use CSS to style the button by its id or class.

This might help: http://speckyboy.com/2009/05/27/22-css-button-styling-tutorials-and-techniques/

share|improve this answer
Standard CSS styling techniques do not work for input controls. – Grodriguez Oct 4 '12 at 19:34

The arrow isn't something you can "just do with code" and the rounded corners would work fine in firefox, but not in ie using css... if you just need to use a custom image it's easy:

css:

#my_upload_button{
  background-image:url(path-to-file.png);
  border:none;
}
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.