I have researching this for a while but can't see how to do this.
Basically I am trying to use icons in a drop-down list, e.g.:
<form method="get" action="testdocs-db.php" name="search" id="search" class="search">
<input type="hidden" name="dosearch" value="true">
<table width=600 border=0>
<tr>
<td>File Type:</td>
<td>
<select name="filetype" size="1" >
<option selected>any</option>
<option id="text">text</option>
<option id="msword">msword</option>
<option id="excel">excel</option>
<option id="powerpoint">powerpoint</option>
<option id="pdf">pdf</option>
<option id="jpeg">jpeg</option>
<option id="png">png</option>
<option id="bmp">bmp</option>
<option id="gif">gif</option>
</select>
</td>
</tr>
</table>
This drop-down is part of form inside a table which is used to search a database and return the results.
Any help would be much appreciated.
Regards, Martin