Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Greetings….you mean the button like you have “Winery Directions” ?

    Thread Starter pasorobleswineries

    (@pasorobleswineries)

    We want the navigation to look the same in mobile as in does in the desktop version. Say you’re on an iPad and turn the orientation to portrait mode. You’ll see a menu button and if you click that, you’ll see the navigation buttons have a black background. We want to be able to change the black to light gray. Probably have to change the text color too since it’s white.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    As it turns out, it looks as though I did not put in mobile menu styling for the customizer. I will have to do that for an update. In the meantime, if you need to change it now, create some custom CSS using Jetpack’s (which I See you are using) own Custom CSs feature. The theme’s default styling is:

    .site-navigation.toggled-on a {
        display: block;
        padding: 0.750rem 0;
        border-bottom: 1px solid #262826;
        background: #080d07;
        display: block;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #b8b8b8;
        font-size: 0.813rem;
        text-decoration: none;
    }

    For you, just do this part:

    .site-navigation.toggled-on a {
        border-bottom: 1px solid #262826;
        background: #080d07;
        color: #b8b8b8;
    }

    Then, for a hover colour:

    .site-navigation.toggled-on a:hover {
        border-bottom: 1px solid #262826;
        background: #080d07;
        color: #b8b8b8;
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Mobile Menu Style/Color Changes?’ is closed to new replies.