I Don't Know what your talking about, if you trying to style a input type file into a button that is easy for me all you will need is just html and css.
<div id="File-Body">
<label id="File-Lable" for="File-For">
<div id="Filebutton">Edit</div>
</label>
<input id="File-For" type="file">
</div>
css:
#File-Body > #File-For {
display: none;
}
#Filebutton {
width: 50px;
height: 20px;
border: 1px solid;
border-radius: 2px;
text-align: center;
}
#File-Body {
width: 300px;
height: 30px;
}
If you want to test it Here it is http://jsfiddle.net/qm8j45c3/