[Resolved] Navigation button hover over to change colour

Home Forums Support [Resolved] Navigation button hover over to change colour

Home Forums Support Navigation button hover over to change colour

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1364728
    Ben

    Hey guys,

    I’ve added a button in my main navigation using the code you provided in your documentation;


    @media
    (min-width:769px) {
    .main-navigation .main-nav ul li.nav-button a {
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    line-height: 35px; /*this number will likely need to be adjusted*/
    }
    }

    But how do I get the button to change color when it’s hovered over?

    Thanks

    #1364919
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    You would do this:

    @media (min-width:769px) {
        .main-navigation .main-nav ul li.nav-button a {
            background-color: #ffffff;
            border: 2px solid #000000;
            color: #000000;
            line-height: 35px; /*this number will likely need to be adjusted*/
        }
    
        .main-navigation .main-nav ul li.nav-button:hover a {
            background-color: #000000;
            color: #ffffff;
        }
    }

    Hope this helps!

    #1365127
    Ben

    Perfect!

    Thanks Tom ๐Ÿ™‚

    #1365883
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.