PassMark Logo
Home » Forum

css for category & results per page drop down list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ucd2k2
    Junior Member
    • Jul 2006
    • 10

    #1

    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?
  • Ray
    Administrator
    • Dec 2004
    • 4357

    #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

    • ucd2k2
      Junior Member
      • Jul 2006
      • 10

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

      Comment

      Working...