PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

css for category & results per page drop down list

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • css for category & results per page drop down list

    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?

  • #2
    You can style the dropdowns in the search form with something like:

    Code:
    .zoom_options option { background-color: #00FF00; }
    This would set the background colour of the dropdown boxes for both "results per page" and "categories" to be green.

    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
    --Ray
    Wrensoft Web Software
    Sydney, Australia
    Zoom Search Engine

    Comment


    • #3
      Great! It works! I changed the font size
      .zoom_options select { font-size: 7pt; }

      Comment

      Working...
      X