0

I am wondering if there is a way to change the placement of "Choose File" and "No file chosen" so that the "No file chosen" area appears before "Choose File". I don't want to change any html, I only want to change the css.

<input type="file" id="upload" name="files[submission_1]" size="22" class="form-file" />

here to save time http://jsfiddle.net/x8wCu/

Emanegux
  • 1,092
  • 2
  • 20
  • 38

1 Answers1

2

Unfortunately this is not possible because the browser decides how that is displayed.

However you can customise the way it looks by using a hack. You basically hide your file input by setting opacity to 0 and then putting a div on top of it.

Check this fiddle.

MMM
  • 7,221
  • 2
  • 24
  • 42