How to disable table mouse hover in shapely

For some reason when I import tables from my word documents I’m getting a mouse over hover effect that makes the information unreadable, is there any CSS code I can use to turn off this hover effect? The tables aren’t interactive you see.

It’s doing it for the glyph icons as well.

The page is: http://www.innerverse.co.uk/astrology-reference-guide/

hey there

Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSS in appearance - customize - additional CSS

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

Thanks!
Colorlib Support Team

Ah thank you so much! is there a hex code to make it transparent?

  • Matt

Hello there,

You would have to use something like this:


.table-hover>tbody>tr:hover {
background-color: #2b003a;
opacity: 0.5;
}

Best Regards,
Support

Hello there,

You would have to use something like this:


.table-hover>tbody>tr:hover {
background-color: #2b003a;
opacity: 0.5;
}

Best Regards,
Support

Thank you so much! I’m sorry to keep bothering you with all this stuff.

Hi there,
I’m glad to be of help.
Please feel free to reach out once again in case you have any more questions.
Best Regards,
Support.