Here’s a quick and dirty way to style file upload (<input type=”file” />) boxes with a few lines of JavaScript and ButtonReplacement.JS, so they look like this:
instead of this:
The Init Script:
<script type=”text/javascript”>
uploadjs.init(‘100′, ‘Browse for File…’); // width and text of the “Browse…” button
</script>
The HTML – any number of file input boxes:
<form id=”Form1″ action=”" method=”post”>
<input type=”file” name=”File1″ [...]