Who knows how...

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Is it possible?... If yes, how can I do it?...
I want to set a specific font (for example, Courier)
for the content of a selection menu form
(SELECTION MENU TEXT... below).

<select name="menuForm">
<option value="Choise1">SELECTION MENU TEXT 1</option>
<option value="Choise2">SELECTION MENU TEXT 2</option>
<option value="Choise3">SELECTION MENU TEXT 3</option>
</select>

:shock:

Thanks,

Leo
 
You'll want to use CSS.

Code:
<html>
<head>
<style type="text/css" media="screen">
   select.mystyle {
      color: green;
      font-family: "Courier New", Courier, monospace;
      font-size: larger;
   }
</style>
</head>
<body>

<select name="menuForm" class="mystyle">
<option value="Choise1">SELECTION MENU TEXT 1</option>
<option value="Choise2">SELECTION MENU TEXT 2</option>
<option value="Choise3">SELECTION MENU TEXT 3</option>
</select>

</body>
</html>

Now that's one ugly drop-down.
 
Back
Top