I am using image as a icon not font awesome. I am trying to reduce the size of image using css.
Here is my code:
.sign_up_name {
background: url(../images/name.png) no-repeat scroll 11px 13px #f2f2f2 !important;
}
<input type="text" class="form_control_field form-control-sign sign_up_name" placeholder="Name">
When I tried to add width to the class name it's reducing the whole input box not the image.
Please let me know what I am doing wrong here.