• Resolved EricH917

    (@erich917)


    I have tried using various CSS snippets to get the links hover colors in the table to be deep blue and orange. This is the most recent.

    .tablepress-id-1 a:visited {
    color: #26296E;
    }
    .tablepress-id-1 a:hover {
    color: #F08B23;
    }

    Unfortunately the theme overrides both the link and the hover with a blue font. I don’t want to have to try to edit the theme code to stop that override.

    Suggestions, anyone.

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

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

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    Indeed, your theme is setting its colors on links with a very high priority. To override that, please try this “Custom CSS”:

    .tablepress-id-1 a:visited {
      color: #26296E !important;
    }
    .tablepress-id-1 a:hover {
      color: #F08B23 !important;
    }

    Note the !important flag that raises the priority of your CSS here.

    Regards,
    Tobias

    Thread Starter EricH917

    (@erich917)

    Tobias, thanks. That resolved the issue and the correct colors are now showing. (Just fyi, I had the wrong color in for the visited link. It should have been #009900. That was an easy fix.

    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 ‘Link Colors Not As Expected’ is closed to new replies.