• Resolved nctbrtc

    (@nctbrtc)


    I’m adding tooltip but they won’t show up on the page.
    I can see as a code, it’s there but it’s not visible
    Would you help please?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Hardik Sharma

    (@hardiksharma)

    Hi @nctbrtc,
    As I Check it happened due to a conflict with third-party plugin CSS. It overrides comparison table widget tooltip CSS due to similar class names.
    To make the tooltip visible add this CSS code

    td.eae-ct-feature .tooltip {
        opacity: 1;
    }
    
    Thread Starter nctbrtc

    (@nctbrtc)

    it works, you’re great!

    Thread Starter nctbrtc

    (@nctbrtc)

    would you also can help for hover problem? The header of the table and the button row have hover color change, I try with my limited css but couldn’t resolve it.

    Plugin Contributor Hardik Sharma

    (@hardiksharma)

    Hi @nctbrtc,
    To change the color of the header or bottom row on the table hover use this custom CSS. This is a sample code, change the value of color according to your requirement.
    If you have elementor pro plugin use the below CSS else replace the “selector” with “.elementor-widget-eae-comparisontable”.

    Header Hover CSS

    selector table:hover tr:nth-child(1) td.eae-fbox-heading,selector table:hover tr:nth-child(1) td.eae-ct-heading,selector table:hover tr:nth-child(2) td.eae-ct-plan {
        background-color: red;
    }

    Bottom Row Hover CSS

    selector table:hover tr:last-child td,selector .eae-ct-wrapper table:hover tr:last-child td.eae-button-heading{
        background-color: red !important;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘tooltip icons are not visible’ is closed to new replies.