Text size for drop down menu/input select not working in Safari

Posted by Nick on Stack Overflow See other posts from Stack Overflow or by Nick
Published on 2009-02-02T12:57:16Z Indexed on 2010/03/30 11:13 UTC
Read the original article Hit count: 309

Filed under:

Hello All,

First question...

I'm having trouble getting ANY of the Drop down menu/Input Select's to appear with size 18 font in Safari.

Works fine in FF.

Code:

<form class="form">
<select name="make">
<option value="0"> All</option>
</select>
</form>

Css:

.form input{
font-size:18px;
margin-bottom:0px;
}

Any ideas? Can view live at [http://www.motolistr.com][1]

Best, Nick

EDIT 1: Thanks for the quick reply. I added a style to the select itself to avoid confusion. I tried;

<select name='make' style='font-size: 18pt;'>
 </select>

And

<select name='make' style='font-size: 18px;'>
 </select>

And

<select name='make' style='font-size: 1.3em;'>
 </select>

Still not working in SAFARI...Again FF works fine with all 3.

Best, Nick

© Stack Overflow or respective owner

Related posts about css