I am using the cgi version and I can't find a way to put a style on the category and results per page drop-downs. The 'advanced search' code that gets generated does not put any css on those elements. Has anyone done this?
You can style the dropdowns in the search form with something like:
This would set the background colour of the dropdown boxes for both "results per page" and "categories" to be green.Code:.zoom_options option { background-color: #00FF00; }
Alternatively, you could define your own search form in HTML with the CSS classes that you require:
http://www.wrensoft.com/zoom/support...tml#searchform
Great! It works! I changed the font size
.zoom_options select { font-size: 7pt; }