Custom CSS: How to change the font size of links under Image Radio Buttons?

  • Tableaux
    Asked on August 15, 2017 at 3:58 PM

    I'm using the "Image Radio Buttons" widget. How to Change the font size of link text under Image Radio Buttons?

    I tried adding the following css but it did not work:

     

    .li label {

        font-size: 10px;

    }

     

    .li {

        font-size: 10px;

    }

    Jotform Thread 1224231 Screenshot
  • Chriistian Jotform Support
    Replied on August 15, 2017 at 4:39 PM

    Please try the following CSS instead.

    li > label > span {

        font-size: 10px !important;

    }

     

    Since it is a widget, add the CSS directly to the widget by following the steps below.

    Custom CSS: How to change the font size of links under Image Radio Buttons? Image 1 Screenshot 20

     

  • Tableaux
    Replied on August 15, 2017 at 5:14 PM

    That worked, thanks!