[Support request] Menu item

Home Forums Support [Support request] Menu item

Home Forums Support Menu item

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #349809
    Roberto

    112/5000
    Hi guys I need to put a line under the buttons in the main menu in the over state, is it possible? Thanks !!

    #349825
    Tom
    Lead Developer
    Lead Developer

    You could try something like this:

    .main-navigation .main-nav > ul > li > a {
        border-bottom: 1px solid transparent;
    }
    
    .main-navigation .main-nav > ul > li.current-menu-item > a {
        border-bottom: 1px solid #222222;
    }
    #349946
    Roberto

    Thanks Tom, I’m useful, but the line I need in the state over, thanks

    #350028
    Tom
    Lead Developer
    Lead Developer

    Ah, sorry!

    .main-navigation .main-nav > ul > li > a {
        border-bottom: 1px solid transparent;
    }
    
    .main-navigation .main-nav > ul > li > a:hover {
        border-bottom: 1px solid #222222;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.