I have a table with class \'table-hover\'. The default hover over color is a white / light grey. How do I change this color?
I\'ve tried overwriting the default by ad
Instead of changing the default table-hover class, make a new class ( anotherhover ) and apply it to the table that you need this effect for.
Code as below;
.anotherhover tbody tr:hover td { background: CornflowerBlue; }