How do I change the font color on highlighted area?

  • snaplash
    Asked on September 13, 2014 at 11:37 AM

    I would like to change the highlighted text to white?

     

    ay help would be ghreat!

     

    Thank you Jotform!

     

    M.

  • snaplash
    Replied on September 13, 2014 at 11:38 AM

    Sorry I forgot to post this and the link.

     

    Could you point me to the css descriptor please?

     

    http://snaplashwebsite.com/section2.htmlHow do I change the font color on highlighted area? Image 1 Screenshot 20

     

  • Ben
    Replied on September 13, 2014 at 3:22 PM

    Hi,

    The CSS descriptor for that section is: .form-line-active

    You can change the background color into white by injecting this:

    .form-line-active { background-color: white; }

    If you want to hide the borders as well, you can add

    .form-line-active
    {
      background-color: white;
      border: none;
    }

    Best Regards,
    Ben

  • Ben
    Replied on September 13, 2014 at 3:25 PM

    Oh sorry,

    I just noticed that you have asked about the text color. To change the text you should actually put this code instead:

    .form-line-active label
    {
        color: white;
    }
     
    Do let me know if that works for you :) and sorry for the mix-up.
     
    Best Regards,
    Ben