How can I change the font color of the Slider with Calculated Result widget?

  • storeytellerfilms
    Asked on August 12, 2016 at 9:39 AM
    Christian,

    One more question:
    If the background of the form is BLACK (as I need it to be), how can I change FONT COLOUR to either WHITE or RED?
  • Chriistian Jotform Support
    Replied on August 12, 2016 at 9:58 AM

    Hi,

    I can see that the background color of your form is still in white but once you change it, you can try to inject the following CSS to your form.

    .form-header-group .form-header,

    .form-header-group .form-subHeader,

    .form-label,

    .form-sub-label,

    .form-checkbox-item label, .form-radio-item label,

    .label_row,

    .value_row,

    #result {

    color: #FFF !important;

    }

    Do let us know if you need further assistance.

  • storeytellerfilms
    Replied on August 12, 2016 at 5:12 PM

    Christiian,

     

    And the FONT COLOUR too?

    Many many thanks.

  • Welvin Support Team Lead
    Replied on August 12, 2016 at 6:58 PM

    You have to inject the following custom CSS codes in the widget (if you are referring to the widget texts):

    td.label_row {

        color: #fff;

    }

    td.value_row {

        color: #fff;

    }

  • storeytellerfilms
    Replied on August 12, 2016 at 7:01 PM

    Superb!