Drop down menu colour not the same on mobile

  • Unknown's avatar

    Hello,

    I’m being driven made by my website http://www.happyyoganewcastle.com

    I am trying to get it so that when you click on the menu on the mobile version it is the same as on the web version, for some reason it is black. I changed the code for drop the drop down menu colour and it changed on my comuter but not on my mobile, the other changes had been made so its not a case of it just not having processed.
    Anybody got any idea why this might be happening??

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi thehappyyogashala, this support forum is for sites hosted on WordPress.com rather than self-hosted WordPress sites. You can find support for self-hosted WordPress sites here:
    http://wordpress.org/support/

    That said, try adding this to your styles:

    .main-navigation .menu {
        background: transparent;
    }
    
    .main-navigation a {
        background: transparent;
    }

    If you find these styles are being overridden, try putting them at the bottom of your CSS file or adding !important to the style:

    .main-navigation .menu {
        background: transparent !important;
    }
  • The topic ‘Drop down menu colour not the same on mobile’ is closed to new replies.