I have positioned the image to the left of the input box, but the text is overlapping the image. How can I prevent this overlap? While the image is correctly aligned on the left, I need the input text to be aligned on the right side of the image without any overlap
CSS
input {
background: url(../../core/images/search.png) no-repeat center left 5px #FFF;
text-align: left;
padding: 5px;
font-family: 'Raleway', sans-serif;
color: #444;
border: 3px solid #FFF;
outline: none;
border-radius: 3px;
margin: -4px 20px;
position: absolute;
width: 270px;
}
HTML
<input type="text" autocomplete="off" name="name">