сss (9) сss3 (14) ajax (2) css (42) drupal (7) Fix IE6 (4) font (4) html (23) javascript (22) jQuery (15) js (5) less (1) php (1) scss (1) soft (2) vue (1) webstorm (1) wordpress (1)

Стилизация input type="file"

<input type="file" id="inputFile" size="49" onchange="document.getElementById('inputText').value = this.value;" /><br />

потом блок который накладываем под инпут файл методом z-index.
<div class="block"> <input type="text" id="inputText" /><br /> <a class="btn">Загрузить</a><br /> </div>

После этого инпут файл делаем прозрачным с помощью цсс:
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;