[Solved] Editing the file input tag so it will look a certain way [duplicate]
ok try this out: html: <p class=”form”> <input type=”text” id=”path” /> <label class=”uploadFile”>upload<span><input type=”file” id=”myfile” name=”myfile” /></span> </label> </p> css: .form input[type=”file”]{ z-index: 999; line-height: 0; font-size: 50px; position: absolute; opacity: 0; filter: alpha(opacity = 0);-ms-filter: “alpha(opacity=0)”; cursor: pointer; _cursor: hand; margin: 0; padding:0; left:0; } .uploadFile{ position:relative; overflow:hidden; cursor:pointer; text-align:center; background-color:#fff; display:block; width:197px; height:31px; … Read more