вот этот вариант и в ИЕ7-8 и прочик работает:
<style>
.file-browse {
cursor: pointer;
position: relative;
display: inline-block;
}
.file-browse:hover {
text-decoration: underline;
}
.file-browse input {
cursor: pointer;
opacity: 0;
filter: Alpha(opacity=0);
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
z-index: -100;
font-size: 0;
}
</style>
<label class="file-browse"><input type="file" />Загрузить файл из...</label>