MultiSelect Grid - How to make certain cells a specific color

  • maineventsecurity
    Asked on October 12, 2014 at 9:00 AM
    Another query, Is there a way of having text or certain cells a specific colour. I need to show what event is on certain dates.
  • Welvin Support Team Lead
    Replied on October 12, 2014 at 10:01 AM

    Hi,

    Please let us know what cells so we can give you the final custom CSS codes. Doing it is a little bit tricky. For example: http://css-tricks.com/how-nth-child-works/.

    For example, if you add the following custom CSS codes to the Widget CSS area:

    th:nth-child(2) {

    background-color: yellow !important;

    color: blue;

    }

    This will turn Nov cell to have a yellow background color and blue text.

    MultiSelect Grid   How to make certain cells a specific color Image 1 Screenshot 30

    MultiSelect Grid   How to make certain cells a specific color Image 2 Screenshot 41

    Thank you!