changing style of font in select filter

Hello,

in your demo grid on

http://www.dhtmlx.com/docs/products/dhtmlxGrid/index.shtml

you have a select filter where the font style and font size is not the same as in the grid itself.

The grid is styled by dhtmlxgrid_dhx_skyblue.css from what I know.

Where EXACTLY can the font size and font style of the filter be changed so that it is the same?

Thank you,
R

Please, try to use the following css:

<style> .hdrcell.filter input{ font-family: Tahoma; font-size: 11px; } .hdrcell.filter select{ font-family: Tahoma; font-size: 11px; } </style>

Thank you, that works!
R