How can I use css to change the font color for the ddslick dropdown widget?

  • criterions
    Asked on May 31, 2016 at 3:00 PM

    I'm using the ddSlick dropdown control and want to know if I can change - via CSS -the color of the description text. The control is great, but I hate the color of the description text - not nearly readable enough.

    Jotform Thread 850767 Screenshot
  • KadeJM
    Replied on May 31, 2016 at 3:59 PM

    I understand you want to change the font color of the descriptive text for our ddslick widget.

    You are referring to the title and brief subscription as highlighted in my screenshot below, correct?

    How can I use css to change the font color for the ddslick dropdown widget? Image 1 Screenshot 20

  • criterions
    Replied on May 31, 2016 at 4:03 PM

    Absolutely correct - can't figure out what the correct syntax should be in the custom css section.

  • KadeJM
    Replied on May 31, 2016 at 4:13 PM

    Okay thanks for confirming that for us.

    I had a feeling that was the case so I went ahead and did the groundwork for you to lend a hand.

    To change this you can inject the following lines of css code below into the widget wizard's css tab.

    To get there just select the widget field on your formbuilder then click the wizard wand (How can I use css to change the font color for the ddslick dropdown widget? Image 1 Screenshot 40) to open up the wizard settings followed by selecting the custom css tab.

    How can I use css to change the font color for the ddslick dropdown widget? Image 2 Screenshot 51

     

    Once there you can add one of these css codes and then simply replace the color with your color of choice or hexcode.

     

    This css code will change the description title for your listed options.

    label.dd-option-text { color: blue;}

     

    And this css code will change the descriptive text of those listed options.

    small.dd-option-description.dd-desc {color: orange;}

     

     

    Example Result:

    How can I use css to change the font color for the ddslick dropdown widget? Image 3 Screenshot 62

  • criterions
    Replied on May 31, 2016 at 4:17 PM

    Awesome -thanks a bunch.