1<style>
2div.fileinputs {
3 position: relative;
4}
5
6div.fakefile {
7 position: absolute;
8 top: 0px;
9 left: 0px;
10 z-index: 1;
11}
12
13input.file {
14 position: relative;
15 text-align: right;
16 -moz-opacity:0 ;
17 filter:alpha(opacity: 0);
18 opacity: 0;
19 z-index: 2;
20}
21</style>
22<div class="fileinputs">
23 <input type="file" class="file" />
24 <div class="fakefile">
25 <input />
26 <img src="search.gif" />
27 </div>
28</div>