How can i change the colour of the numbers in the "results per page" pull down menu?
Announcement
Collapse
No announcement yet.
results per page pull down menu colour
Collapse
X
-
Most visual aspects of the search form can be modified via the use of CSS. Please see this FAQ for more information:
http://www.wrensoft.com/zoom/support/css.html
The dropdown menus for "Results per page" is a <select> tag within the "zoom_options" class. As such, you can change the colour (or font, etc.) with something like the following CSS:
Code:.zoom_options select { color: #00FF00; background-color: #000000;}
Note also, that you can define your own search form in HTML, and disable the one that is generated by the search script - should you need to make more radical changes not possible via CSS. For more information, see:
http://www.wrensoft.com/zoom/support...tml#searchform
Comment