Striped styling for editor form

Striped styling for editor form

dynasoftdynasoft Posts: 439Questions: 68Answers: 3

Hi

I'm trying to have an editor pop-up form that has stripes just like the datatables can have but can't see how to do it. The info given here https://editor.datatables.net/manual/styling/ is really for datatables, not so much for styling the actual editor form. I also tried using editor templates but the striped class under bootstrap 3 only works for tables, not divs. Please advise

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,175Questions: 1Answers: 10,409 Site admin
    Answer ✓
    div.DTE_Field::nth-child(odd) {
      background-color: ...;
    }
    

    should be all you need.

    Allan

  • dynasoftdynasoft Posts: 439Questions: 68Answers: 3

    Many thanks

This discussion has been closed.