• broadmarkcorp

    (@broadmarkcorp)


    When the theme re-sizes down and shows a small box to click on how do I control the hover property of that to change color.

Viewing 1 replies (of 1 total)
  • Theme Author Brian Harris

    (@zgani)

    For that you’d need the following CSS code:

    .navbar-inverse .btn-navbar {
        color: #000;
        background-color: #ffffff;
        background-image: linear-gradient(to bottom, #ffffff, #ffffff);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    }
    
    .navbar-inverse .btn-navbar:hover {
        color: ##00A5C5;
        background-color: #C4001D;
        background-image: linear-gradient(to bottom, #C4001D, #C4001D);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    }

    Hope that helps.

    Regards,
    Zulf

Viewing 1 replies (of 1 total)
  • The topic ‘Menu Mouse Over on Screen Resize’ is closed to new replies.