Change the colors in the Appointment Slots Widget

  • aliso1920
    Asked on August 27, 2018 at 4:06 PM

    Eu queria saber se há uma maneira de editar / alterar a cor do texto no widget Appointment Slots.

  • Adrian
    Replied on August 27, 2018 at 5:14 PM

    Yes, it is possible to change the text color in the Appointment Slots Widget by adding Custom CSS.

    .checklist label {
      color: blue;
    }
    .items-left {
      color: #e00;
    }

    The first rule changes the checkbox text color to blue, while the second rule changes the "availability" text color to red. Feel free to use any color you want.

    DEMO: https://form.jotform.com/82386425820964

    Change the colors in the Appointment Slots Widget Image 10

    Let us know if you need further assistance.

  • aliso1920
    Replied on August 27, 2018 at 5:24 PM

    Perfect ! Thank you.