Change table colour (hover)

Hi,
I would like to change the table hover feature.

By default, when you hover over a table, the row colour changes to grey.
http://ultimatekorean.com/table
Password = colorlib

Is there some custom CSS to change this grey to blue?


Additionally, is it possible to make the first row always be ‘green’. (Such that the first row isn’t affected by the hover)

Many thanks,

Hi There,

Thanks for the mail.

You can change the however color using the following custom CSS.

.table-hover>tbody>tr:hover {
    background-color: #fefefe;
}

As for the first row,

.table-hover>tbody>tr:first-child {
    background-color: green !important;
}

Hope this helps.

Smashing.

Many thanks

Hey there

Is there anything else? :slight_smile: