Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36255
    Cybersnaby
    Participant

    Hi
    I want to style the responsive menu – change colour / font colour / remove shadow/gradient effect?

    I found this code – is this relating to the responsive menu?:
    .tinynav {
    display: none;
    font-size: 16px;
    }
    What CSS can I use to change the items above please?
    Thanks!

    #36322
    Sakin
    Keymaster

    @Cybersnaby: Catch Mustang uses tinynav that is just a select-box and will be difficult to change the style. So, we are thinking of changing more flexible menu in next version update. But has not been finalized yet.

    So, the background and shadow is from the main menu style only. This is css controlling both main menu and responsive menu.

    #access {
        background-color: #fff;
        border-radius: 3px;
        box-shadow: 0 1px 4px #bababa;
        padding: 0 10px 10px;
        position: relative;
    }

    And yes for the font size, it is controlled from

    .tinynav {
        font-size: 16px;
    }

    For the mobile menu item color:

    #access select {
        color: #474e55;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Styling Responsive menu’ is closed to new replies.