• I am using the Virtue Theme. I have a menu on the footer on the bottom right. In theme options, I was able to change the text color in the footer to white. However, when I hover over the text of the footer menu it turns a green color and blends in with my footer background. How can I change the hover settings of the footer menu to make the text just underline or turn black instead?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Here is some CSS that will change the hover state of your footer menu to black text with underlines:

    .footernav ul li a:hover {
        color: black;
        text-decoration: underline;
    }

    Place that into Theme Options> Advanced Settings and let me know if it works for you.

    -Kevin

    Thread Starter youngmarriedtraveled

    (@youngmarriedtraveled)

    Sorry for the late reply! That works great! Thank you Kevin!

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

The topic ‘Footer Navigation Menu Hover’ is closed to new replies.