• Resolved philippf

    (@philippf)


    Hello,

    I am currently working on my website. For this I try to change the colors of the theme via CSS. Unfortunately, my theme, Certify, has an animation that I can not change. When the mouse pointer goes over “Animals”, “Macros” and “Landscapes”, a red line appears as an animation. This I want to have green, can help with someone? A CSS code would be great too.

    Many thanks in advance!

    Philipp Falkenhagen

    Website: philippfalkenhagen.de

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey Philipp,

    You can try add this css code to your child theme or if your theme has a place where you can add custom css:

    .service-section .post:hover {
    border-top: 2px solid #64c12e;
    }

    Kind Regards,
    Steponas

    Thread Starter philippf

    (@philippf)

    Thank you so much!!!!

    It works!

    Thanks :DD

    Thread Starter philippf

    (@philippf)

    Thank you again. Could you help me with another thing? When I go over words with links, they are red. I would like that too in green.

    many Greetings

    Philipp Falkenhagen

    You are welcome, as a general link color is set to none, you can set green color for each element separately:

    Footer widget:

    .widget_recent_entries a:hover {
    color: #64c12e;
    }

    For footer bottom:

    .site-info a:hover, .site-info a:focus {
    color: #ce1b28;
    }

    You might get css conflict since the theme is already using important!

    Kind Regards,
    Steponas

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘CSS change does not work’ is closed to new replies.