I already searched everywhere for this and haven't find it anywhere. Starting to think it's not doable. My Question is this:
Is it possible to style with CSS, the selected value of a select box?
I'm using this code with the class pretty-select to style the entire select box!
<div class="pretty-select">
<select name="city" class="city">
<option value="Porto" selected="selected">Porto</option>
<option value="Penafiel">Penafiel</option>
<option value="Lisboa">Lisboa</option>
<option value="Madrid">Madrid</option>
<option value="Barcelona">Barcelona</option>
</select>
</div>
Thanks for yout time! Cheers