Mobile menu icon issue

edited June 2015 in Other
Hi,

On mobile view the menu icon shows up on my logo. Take a look at it here: http://responsivetest.net/#u=http://yourideatoaction.org/|640|1136|2

Any idea?
Thanks

Comments

  • Hi,

    this happen because your logo is too large for mobile devices. Previously we gave you css for logo height on mobile devices which is 40px. If it's still not enough, then instead of 40px you must use 30px. But you must wrap this code into media query, so whole code should look as below:
    @media only screen and (max-width: 767px) { #Top_bar #logo { height: 40px !important; } }
Sign In or Register to comment.