Why isn't there a fancy file element upload button for twitter bootstrap? it would be sweet if the blue primary button was implemented for the upload button. Is it even possible to finesse the upload button using CSS (seems like a native browser element that cant be manipulated)
|
|
Upload buttons are a pain to style because it styles the input and not the button. but you can use this trick: |
|||
|
|
|
It's included in Jasny's fork of bootstrap. A simple upload button can be created using
With the fileupload plugin you can create more advanced widgets. Have a look at http://jasny.github.com/bootstrap/javascript.html#fileupload |
|||||||||||||||
|
|
Works for me: Update
|
||||
|
|
|
Two great solutions that are tailored for Bootstrap: |
|||||||
|
|
With no additional plugin required, this bootstrap solution works great for me: demo: http://jsbin.com/ebivoq/1/edit
|
||||
|
|
|
Another option for bootstrap is: http://gregpike.net/demos/bootstrap-file-input/demo.html If you do not need all the extra features that Jasny offers I would go with this one. |
|||
|
|
|
this is the best file upload style I like:
you can get demo and more styles at: http://jasny.github.com/bootstrap/javascript.html#fileupload but using this, you should replace twitter bootstrap with jasny bootstrap files.. regards. |
||||
|
|
|
No fancy shiz required: HTML:
JS:
CAUTION: The three form elements in question MUST be siblings of each other (.image-file-chosen, .image-file-button, .image-file) |
||||
|
|
|
This works perfectly for me
|
|||
|
|