Jump Menu Font

A

Accesscrzy

Is there any way to change the font in a jump menu. I want to make it smaller.
Thank you.
 
J

Jon Spivey

Hi,
For sure. You can change size/font/colour etc with CSS, eg
<style type="text/css">
#yourMenu{
font-size:12px;
}
</style>
<select id="yourMenu".....
 
Top