Skip to content

Snippet: Display Mobile Menu Icons Always

By default mobile icons hide for phone sizes to prevent conflicts with the logo, but they can be displayed with some custom CSS.

/* Display Mobile Menu Icons Always */
@media only screen and (max-width: 500px) { 
   body .mobile-menu-extra-icons { display: block !important; }
}
Back To Top