How do I change the standard size and font size within a drop down menu on a form. Currently I have the following code: <SELECT name="UserRating"> <OPTION value="Poor">Poor Cheat</option> <OPTION value="2">Ok Cheat</option> <OPTION value="3">Good Cheat</option> <OPTION value="4">Excellent Cheat</option> HTML: I want to make box smaller so that it fits in with the rest of the design. Thanks in advance.
You can use style sheet to modify its font and size, like this: =================== <SELECT name="UserRating" style="font-size:10px;width:100px;"><OPTION value="Poor">Poor Cheat</option><OPTION value="2">Ok Cheat</option><OPTION value="3">Good Cheat</option><OPTION value="4">Excellent Cheat</option> =================== This is just example you can freely modify and try different font, sizes and width