PDA

View Full Version : CSS Resizing pulldown menu


warnere
04-04-2007, 03:45 PM
Folks,

I wish to have the pulldown menus slightly smaller than the default. I was able to resize the input box via the CSS parameter, but can't figure our how to make the Results per Page and Category menus smaller.

I hope this is possible. Please advise!

thanks
E

wrensoft
04-05-2007, 04:49 AM
You can use use plain CSS on the HTML.

For example, this code,

.zoom_results_per_page { font-size: 60%; margin-left: 10px; }
select { font-size: 60%; background-color: #FF0000; }


Will give smaller text and a red background color to the drop down list.