• Hey. At first sorry my englisch isn’t so good.
    I have a question. How can I change the color of my dropdown menue? I mean the color wenn I mouseover. I hope you now what I mean. I’ve not please ask me again, I’ll try my best.
    Please help me.
    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • You can try adding this to your child style.css:

    .dropdown-menu > li > a {
     color: rgb(25, 25, 112); // This example will make the color blue
    }
    Thread Starter Ctina

    (@ctina)

    Thanks. I’ve tried. But if I insert this code the text color of the dropdown menu is changing. Then I changed “color” in “background color” but then the background of the dropdown menu is blue. But I only want to change the color of the mouseover. Only when the mouse is going over the menu point not the whole. Could you help me there too.
    Could you understand me?

    So you would like to change the color of the text when you mouseover or the background? Try this:

    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
        text-decoration: none;
        color: rgb(255,255,0); // changes text color
        background-color: rgb(255,255,0);
        background-image: linear-gradient(to bottom, rgb(0,0,0), rgb(0,0,0));  // changes background color
        background-repeat: repeat-x;
    }
    Thread Starter Ctina

    (@ctina)

    Yeah it worked. Thank you so much.

    Cool! 🙂

    Thread Starter Ctina

    (@ctina)

    Maybe you could help me with another problem.
    Do you know how I could change the color of the empty title?
    I meen the color of the text which I insert in the title area.

    Try this:

    .site-header h1 a {
        text-decoration: none;
        color: #000000; // your color code here
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change color dropdown menue’ is closed to new replies.