• I have searched the forums, and also searched CSS sites, but I can’t get my problem to work.

    I have a menu on this page: https://car-title-services.com/

    I have tried several CSS tricks, but none are working.

    I am trying to change the background hover color on the dropdown menu to a different color other than white.

    I have searched CSS sites and tried many different things and I can’t seem to get that background color “on hover” changed for the life of me.

    Can someone please help me?

    Thanks to all in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @jbento,

    I can help you. So, what exactly are you trying to accomplish? I see you have already changed the on hover background-color for the menu items.

    • This reply was modified 7 years, 9 months ago by a2hostinglk.
    Thread Starter jbento

    (@jbento)

    Yes I would love for you to help me!

    From this link: https://car-title-services.com/, if you hover over “Services”, a drop-down will come down.

    When you see that drop-down, there are 2 items that are there. If you hover over those drop-down items, you will notice the background color behind those items are “white”. I want to change that color to something else.

    That is what I am trying to do and can’t figure that out.

    Can you help?

    Sure, I can help you. Let me test the menu bar on your website and I will get back to you.

    Ok, I have a solution for you:

    On your index page, you will find this style:

    .navigation-main ul ul {
        border-top: 2px solid #4965a0;
    }

    You can add the background-color property – background-color: #000000;

    (In this example, I am using black background color)

    After adding the background color, your css should look like this:

    .navigation-main ul ul {
        border-top: 2px solid #4965a0;
        background-color: #000000;
    }

    This should do it. (Let me know if you have any issues)

    @jbento – Did you try the code I gave you?

    @jbento – Just checking if your problem has been resolved?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change the hover background color of drop-down menu’ is closed to new replies.