Font Size Table Header

  • tbgevents
    Asked on June 10, 2020 at 12:27 PM

    Hi. I have two questions. Please provide answers to both.

    1. How do I change the Header font size of an input table?

    2. It is possible to change the Header font size of just one column and not the others? If so, how do I do that?

    I'd like to do one/both of these in the widget CSS.

  • Ivaylo JotForm Support
    Replied on June 10, 2020 at 2:15 PM

    It seems that you are referring to the Spreadsheet widget. In order to change the font size of the headers, you can use the following CSS code:

    #col_A, #col_B, #col_C, #col_D, #col_E {

       font-size: 25px;

    }

    If you have more headers, you can add #col_F, #col_G etc. in the code.

    You can also change the header font size of just one column. You should target the specific column with CSS code. For example:

    #col_D{

       font-size: 25px;

    }

    Let us know if you need any further assistance.