I have an image that is included in all text fields and drop downs like so:
However, when it comes to a multiple select drop down box, the image appears differently:
I would like the image to display as shown above for multiple select drop downs.
I attempted using height: 100%
in the CSS but it did not produce the desired result.
The current CSS code I am using is:
.symbol{
background: #FFFFFF url(../images/symbol.gif) no-repeat 4px 4px;
background-position: left;
}
What modifications should be made in the CSS to achieve this outcome?