How can I change the text color of the Ticket Purchase widget?

  • moberempt
    Asked on December 6, 2015 at 4:05 AM
    In the ticket purchase widget, how can I change the text color of the labels that are In and Out (currently they are a gray color, and they don't show up very well with the background I am using and the transparency of the field).
  • Welvin Support Team Lead
    Replied on December 6, 2015 at 4:13 AM

    You can inject the following custom CSS codes in the widget to override the color to white:

    .checklist label {

    color: #fff;

    }

    If you also want to remove the background color, you can inject the following custom CSS codes:

    .checklist li:hover {

    background: none;

    }

    Again, you have to inject this in the widget CSS area. Example:

    How can I change the text color of the Ticket Purchase widget? Image 1 Screenshot 20

    I hope that helps. Let us know if you need any further assistance.