I'm trying to implement a search bar
But i was not able to display the search icon on the search bar.
Here is the code (jsfiddle).
I found the default style overrides my custom style.
HTML
<div id="search_controls">
<input type="text" class="search-box" placeholder="e.g. restaurant name, cuisine" />
</div>
input.ui-input-text, textarea.ui-input-text {
background-image: none;
padding: .4em;
margin: .5em 0;
line-height: 1.4;
font-size: 16px;
display: block;
width: 100%;
outline: 0;
}
CUSTOM STYLE
#search_controls + input.ui-input-text{
background: url('../img/search_icon.png') 98% center no-repeat!important;
height: 26px;
padding: .4em;
margin: .5em;
font-size: 15px;
display: block;
width: 99%!important;
outline: 0;
}
How to address this issue?
