Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Responsive Data Table-Affecting Header + more Reply To: Responsive Data Table-Affecting Header + more

#196592
Paulie_D
Member

Turning to your specific striping issue…to have this only apply to the table(s) you want, you have a couple of options.

The simplest is to note that both of these tables are inside a div with an ID of page-wrap…that means we can target tables that are specifically inside that div by amending the css to include that ID

E.G.

/* Zebra striping */
#page-wrap tr:nth-of-type(odd) {
 background: #E8EEf1;
}