• Hi – any chance of having the rows on the list page to have a class of even or odd alternatig so that we canstyle them alternating shades/colours?

    Cheers and many thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author xnau webdesign

    (@xnau)

    You just need to use some custom CSS to get that done….for example:

    .pdb-list tr:nth-child(even) {background: #CCC}
    .pdb-list tr:nth-child(odd) {background: #FFF}
    Thread Starter andyward75

    (@andyward75)

    That’s great. Finding out the classes to style is the trickiest thing at present. I’d like ot put borders around the fiels values on the single form – can you let me know the correct class to which to apply the style?

    Many Thanks

    Plugin Author xnau webdesign

    (@xnau)

    The best way to do this is to use your Browser Developer Tools inspector and select the element you want to style. Go up the HTMl tree and look for a common classname in the HTML that encompasses all the elements you want styled. Then use that classname and the element tag for your selector. This will work in most cases,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Alternate Row Shading’ is closed to new replies.