简体   繁体   中英

change menu color on mouseover

I'm building a website through WP, and i've gotta change mouseover color to blue. I can't figure out how to do that.

This is the website

I've tried selecting it through id

#menu-menu-principale-effettivo a:hover{
    color:blue;
}

But it didn't work. I've tried to look on the net but since i'm new to css, i've probably miss understood how to do that.

Thank's in advance

[Solved] by adding at the end of the static.css file:

@media screen and (min-width: 992px) 
{
#cshero-header-navigation .main-navigation .menu-main-menu > li:hover > a {
color: #073576 !important;
}
}
@media screen and (min-width: 992px) {
#cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a .menu-title:before, #cshero-header-navigation .main-navigation .menu-main-menu > li > a .menu-title:before {
background-color: #073576 !important;
}
}
@media screen and (min-width: 992px) 
{
#cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-ancestor > a {
color: #073576 !important;
}
}
@media screen and (min-width: 992px)
{
    #cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item > a
    {
        color: #073576 !important;
    }
}

note: wp is a weird thing, the custom css I was trying to put in wasn't working through the "custom css" tool and I had to write it manually into the file.

Try adding the !important tag after your css property. For example #menu-item:hover{ color: blue !important; } #menu-item:hover{ color: blue !important; }

Add this css

ul#menu-menu-principale-effettivo a span:hover{
color:blue
}

在此处输入图片说明

You can add the styles to your links.

 <a href="http://www.equa.it/bergamini/home"
 class="menufinale"
 onMouseOver="this.style.color='#00F'"
 onMouseOut="this.style.color='#999999'">
<span class="menu-title">Home</span>
</a>

Try this

#menu-menu-principale-effettivo a:hover{
color:blue !important;}

add this to your css

#menu-menu-principale-effettivo li a span.menu-title:hover{
    color:blue;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM