Highlight Row and Individual Cell (Hover)
-
Hi,
I am currently able to have an individual cell change color when the mouse hovers over it, or have the entire row change color when the mouse hovers over it. The problem I’m having is having BOTH the entire row change color (color1) as well as the current cell change color (different color2). Is this possible?
I’m able to do the former by disabling the checkbox for highlighting the entire row, then adding the CSS below. I’m able to do the latter just by using the checkbox option. Granted, I have an additional line of CSS that is changing the background color when the row is highlighted so I’m not sure if that is making things messed up. Any help would be appreciated!
/* Change the hover row color */
.wp-table-reloaded-id-5 .row-hover tr:hover td {
background-color: #EEEEEE!important;
}/* Change the hover individual cell color */
.wp-table-reloaded-id-5 td:hover {
background-color: #CCCCCC!important;
}
- The topic ‘Highlight Row and Individual Cell (Hover)’ is closed to new replies.