Viewing 5 replies - 1 through 5 (of 5 total)
  • Sam

    (@soumendra)

    Hello,

    You can try this in your Custom CSS for achieving that:

    .main-navigation li:hover > a, .main-navigation li.focus > a {
        background-color: #296
    }
    .widget-title {
        color: #2be;
    }
    .entry-title a {
        color: #f00;
    }

    You can adjust the colors as per your requirement.

    Thank you.

    Sam,

    I had the same question. I added the code
    .main-navigation li:hover > a, .main-navigation li.focus > a {
    background-color: #296
    }
    .widget-title {
    color: #2be;
    }
    .entry-title a {
    color: #f00;
    }

    To my custom CSS but I don’t see a change when I change the colors on my footer menu or home menu. Any other thoughts on how to get this changed or is t here something I’m not doing correctly?

    my site is https://firstpresvaldosta.org/wordpress1/ and I would like to change the footer menu color from red to gold.

    Sam

    (@soumendra)

    Hello amykoverton,

    In the above all codes are okay except one
    instead of

    .entry-title a {
    color: #f00;
    }

    You can try this

    .entry-title {
    color: #f00;
    }

    And for the footer menu you need to try this in your Custom CSS:

    .widget-area ul li a::before {
        color: gold;
    }
    a:hover, a:focus, a:active{
        outline: thin dotted gold;
    }

    Hope that helps you, feel free to ask if there is any other problem.

    Thank you.

    Sam- Thank you so much! Appreciate your help

    Sam

    (@soumendra)

    Pleasure to help you. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change hover color on menu tabs plus more’ is closed to new replies.