Urgent...How can I just change the font on my table

  • minooar
    Asked on May 20, 2017 at 6:15 PM

    How can I change the (a) font size; and (b) make it bold only for the table (pages 17 and 18) ? The Form designer change the font of the whole form and not the table.

     

    Thanks

  • Kevin Support Team Lead
    Replied on May 20, 2017 at 11:49 PM

    You could inject the following CSS code to your form and affect only the input table on the desired pages: 

    #id_192 .form-matrix-table{

      font-size: 15px;

      font-weight: 900;

    }

    #id_159 .form-matrix-table{

      font-size: 15px;

      font-weight: 900;

    }

    This guide will help you injecting the CSS code to your form: How-to-Inject-Custom-CSS-Codes

    Hope this helps.