• Resolved gadgetman1966

    (@gadgetman1966)


    How do I shrink the button size so all menu items are in a line?
    How do I match the selected page button color to the hover color?
    g-mancomputers.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> paste code in Custom CSS box and save –

    .navbar-default .navbar-nav > li {
        margin-right: 0px !important;
    }
    .navbar-default .navbar-nav > li > a {
        font-size: 13px;
    }
    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .dropdown-menu .active a {
        background-color: #0000b0 !important;
    }

    Thanks.

    Thread Starter gadgetman1966

    (@gadgetman1966)

    No change from that.
    Tried to adjust the font size, did not change the size of anything.
    Active button does not change color. If I change the color code it does nothing.

    Thank you

    Hello,

    Replace the above code with below code –

    .navbar-default .navbar-nav li {
        margin-right: 0px !important;
    }
    .navbar-default .navbar-nav li a {
        font-size: 13px;
    }
    .navbar-default .navbar-nav .active a, .navbar-default .navbar-nav .active a:hover, .navbar-default .navbar-nav  .active  a:focus, .dropdown-menu .active a {
        background-color: #0000b0 !important;
    }

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How do I the menu shrink button size?’ is closed to new replies.