This question is locked. New answers and comments are not allowed.
Hi - I'm looking to add a search icon to the right in my combo box (right before the dropdown arrow, similar to the look of the google toolbar). I tried adding a css class like this...
Then on my combo box, I set the class...
But the icon isn't showing up. I'm assuming this is something simple I'm missing. Has anyone done something similar before?
Thanks!
.search-combo-box
{
background-image: url('Images/Search-icon.png');
background-repeat: no-repeat;
background-position: right;
}
Then on my combo box, I set the class...
.HtmlAttributes(
new
{ @
class
=
"search-combo-box"
} )
But the icon isn't showing up. I'm assuming this is something simple I'm missing. Has anyone done something similar before?
Thanks!