• Resolved jprest

    (@jprest)


    I use Collapse-O-Matic for an FAQ page on our website. It works excellent. However, if I add a href link to one of the answers, when a user hovers over the link, the color of the link turns the text white (which is the same as the background). Is there away for me to change the ‘hover’ color of a link which resides in a Collapse-O-Matic Expand tag (see the first question/answer in the page link I provided. When you hover over the word ‘Here’ it disappears)?

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author twinpictures

    (@twinpictures)

    you’ll need to overwrite the css that is causing this (not our plugin):
    try:

    .collapseomatic_content a::hover{
       color: #333333 !important;
    }
    Thread Starter jprest

    (@jprest)

    I placed your code in the additional css for the theme, and nothing changed. There are other links on the site where I do not use collapse-o-matic and those links appear as expected when I hover over them (not white text). That is what is leading me to believe it is the plugin causing the hover link color issue.
    Should I have applied the css you provided to settings within the plugin?

    Plugin Author twinpictures

    (@twinpictures)

    again, this is not coming from our plugin.
    we went the extra step and troubleshot your page, and the css issue is coming from:

    a:focus,
    a:hover {
        outline: none !important;
        outline-offset: 0px !important;
        color: #fff !important;
    }

    located at: …/wp-content/themes/atticus/style.css?ver=5.8.2
    in other words, the active theme: atticus

    now that this is known, you will need to add the following to your child-theme css:

    a:hover {
        color: #333 !important;
    }

    Good luck, issue marked as resolved.
    if you are happy with the plugin or the support we provide for your theme’s author, feel free to leave a review on their site:
    https://www.digitize-info.com/

    Thread Starter jprest

    (@jprest)

    Perfect. Thank you for looking into this. Very much appreciated. I will try what you suggested.
    Have a GREAT Day!

    Thread Starter jprest

    (@jprest)

    That worked! Thanks so much for your help. ??

    Plugin Author twinpictures

    (@twinpictures)

    Huzzah!
    If you are happy with our plugin or it’s support, consider leaving a little review here on WordPress?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to change ‘hover’ color on link’ is closed to new replies.