Hi all - am trying to add a background image to the imput area for file upload for the input fields I have used the below css any solutions will be great.
Thanks in adavance
D
#content .input-wide
{
width: 288px;
height: 22px;
margin: 0;
padding: 6px 5px 6px 27px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
border: 1px solid #b4b4b4;
background: #fff url(/media/library/sprite.png) no-repeat -2px -1px;
}
}
<form>
<div>
<label for="upload">Upload photo:</label>
<input class="upload input-wide" name="upload" id="upload" type="file">
</div>
</form>
`