Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    This is caused by two separate issues:

    The hover is not working because of CSS specificity. In your “Custom CSS”, please change

    .tablepress .row-hover tr:hover td {
    	background-color: #424242;
    	color: #c7c7c7;
    }

    to

    .tablepress .row-hover tr:hover td {
    	background-color: #424242 !important;
    	color: #c7c7c7;
    }

    so that it again overwrites the alternating background colors, which use the !important flag as well.

    The issue with the alternating row colors is caused by a JavaScript problem. Basically, you can’t use the DataTables JS library in a table (that with the ID “R471E”), that uses colspan to merge cells. As you have turned off the individual features anyways, the fix should be as easy as unchecking the “Use DataTables” checkbox for that table.

    Regards,
    Tobias

    Thread Starter eharri21

    (@eharri21)

    You are awesome! Issue resolved and I can stop banging my head on the desk. I was so close to! Donation will be made. Thanks again!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Row Hover Functions’ is closed to new replies.