
How do I get rid of that white background behind the image?
CSS:I thought webkit would do the trick but it's not
<style>
.qq {
background-image: url('../images/select-category.png');
width: 148px;
height:34px;
-webkit-appearance: none;
}
</style>
HTML:
<div style="float:left;">
<form>
<select id="basic" class="qq" onchange="showFolders(this.value)">
<?php
foreach ($folder as $t)
{
echo '<option value="'.$t['folder_id'].'">'.$t['name'].'</option>';
}
?>
</select>
</form>
</div>