Changing font size/style of header text in table?

Hello,

I am trying to change the font size (and also size if possible) of the text in the header cell of my table.

In my style.css I have the following:

.i-table-sessiontable .i-table-header-cell {
text-align: right;
font-size: 50%;
}

This will change the alignment, but the font size does not change.

Is this possible?

Thanks,
Ajay

Hi,

I think you should add something like .i-table-caption-container to your selector - something like this should do the trick:

.i-table-sessiontable .i-table-caption-container {
font-size: 50%;
}

(can’t try it right now, but something like this - firebug inspect element will tell you)

Best Regards,
Marc

Great…that worked, thanks!