Forum Moderators: open
There is some bugginess with the implemetation of styling select lists with different things working for different browsers (IE6 is problematic too). Have you tried setting the font-family to monospace on both the
select and option elements? That might do it. Here's a test page which works in Konqueror 3.4 (a close relative of Safari):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>test template</title>
<style type="text/css">
select, option {font-family:monospace;}
</style>
</head>
<body>
<form action="">
<select>
<option value="a">abcdef</option>
<option value="b">ghijkl</option>
<option value="c">mnopqr</option>
<option value="d">stuvwx</option>
</select>
</form>
</body>
</html>