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}
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
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,