Grid field formatiing

I’d like to have a column within a grid that has a different format. I’d like there to be 2 rows of data within a cell. I’ve tried a custom css class on the field, but the dhx_cell class overrides the cell padding and the element style overrides the line-height.

Is there a way I can accomplish this?

Thanks.

You can add !important to you css rule. In this case, it will redefine other styles:

line-height: 20px !important;

I knew you’d have a solution, you always do!

Thank you.