i have style my select box and its working fine on chrome and safari.
now my problem is in FF i can still see the dropdown arrow with my select box.
i have tried to refer this solutions and this solutions but it didn't help me.
Code :
<select placeholder="Search" name="search_cat" class="search_select">
<option value="">Everything</option>
<option value="resource">Resources</option>
<option value="734">Blog Posts</option>
<option value="8">Pictures</option>
</select>
css :
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: url("Search-bar-Arrow.png") no-repeat scroll 70px center #80B83B;
border: none;
color: #FFFFFF;
height: 27px;
overflow: hidden;
padding: 4px 0;
vertical-align: top;
text-indent: 0.01px;
text-overflow: "";
width: 91px;
do anyone have trick or solution for this?
Thanks a lot in advance