Mobile Menu Button Squished

On my website, http://www.benjaminalyssa.com, on smaller screens, the menu button is getting squished. I’m trying to figure out how to cause the logo to shrink a little bit more on mobile devices to prevent this, but all of the CSS I’ve tried does not seem to be working. Any ideas?

Hello @bendhall,

Thanks for asking. :slight_smile:

In the navigation layered element under Customize > Element CSS add following CSS and let us know how it goes.

$el{margin-top: -25px;}

Thanks.

Thank you! That fixed the menu button; however, now the logo overlaps the menu button. :smile: Is there a way to shrink that more on the smaller screen too?

Hi,

You can try adding the code below in your image element CSS


@media(max-width:767px) {
    $el{max-width:150px;}
}

You may change 150px to adjust

Hope that helps

Thank you so much! Worked great!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.