Forum Moderators: open
Have you tried using a
span around the text you need in the different font? <option>Text in default font and <span class="opt-text">text in Times font</span></option> And the CSS:
span.opt-text {
font-family:"Times New Roman", Times, serif;
}
Theoretically you could build your own drop-down using JavaScript to show/hide a div with options, then you could style the links in the div any way you want. This would of course require a lot more work, and wouldn't be any good for users who have JavaScript turned off (you would need to provide alternative navigation for them). I recommend you stick with the standard <select> dropdown-menu and just live with the fact that you can't change style mid-line. Simple is good.