Okay
  Public Ticket #2376138
how to change color on a:hover of an element <ul>?
Closed

Comments

  • Marcello Camera started the conversation

    I need to change the colors of links in a bulleted list, when i go on it with mouse.

    Those elements are in the middle footer.

    I'm using karo 2.2

  •  2,636
    Kevin replied

    Hi Marcello Camera!

    Add the following css property at Appearance-> Customize-> Additional CSS to change colors as you scroll through


    .footer-middle ul li a: hover {
        color: #fff000 !important;
    }

    With # fff000 is the color code you can change

    thank you

  • Marcello Camera replied

    Hi Kevin, i wrote as you suggested me, but it doesn't work...

  •  2,636
    Kevin replied

    Please add this again

    .footer-middle ul li a:hover {
        color: #fff000 !important;
    }

    thank you