PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

CSS Resizing pulldown menu

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

  • CSS Resizing pulldown menu

    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

  • #2
    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.

    Comment

    Working...
    X