Wanted to have a selectbox for the user to choose the way he wants some data sorted.
I have this code and this style.
Code: Select all
<style type="text/css">
<!--
option[value=price ASC]:before { content:url("up.gif"); }
option[value=price DESC]:before { content:url("down.gif"); }
option[value=size ASC]:before { content:url("up.gif"); }
option[value=size DESC]:before { content:url("down.gif"); }
-->
</style>Code: Select all
<option value="price ASC">Price</option>
<option value="price DESC">Price</option>
<option value="size ASC">Size</option>
<option value="size DESC">Size</option> Out of topic comment and question...
Genereally IE limits ones choices amazingly much, so can anyone see any hope that all those problems will soon be fixed?