Why highlight or form line color is not changing?

  • CarolinaMESH
    Asked on June 12, 2020 at 11:23 AM

    Hi,


    I have tried several times to change the highlight yellow color on the form called Booking Form,  it's still showing it on yellow.

    What else can I do?

    Also, how do I remove the language section on the top of the form?

    Thanks,

    Carolina

    info@thecreatorscommunity.com


  • jherwin
    Replied on June 12, 2020 at 11:55 AM

    Hello Carolina - Can you please try this custom CSS code:

    For yellow background, use this custom CSS code.

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

    To remove the language section, you can use this CSS.
    div#langDd {
        display: none;
    }

    Guide: How-to-Inject-Custom-CSS-Codes

    Please give it a try and let us know how it goes.