Hi – How do I add a logo to the burger menu?
Thank you for your help : )
Hey envisageiam,
Thank you for the inquiry.
You can add another menu item in the Appearance > Menus panel and in the Navigation Label field of the menu item, insert an <img> tag containing the logo image. Then, add the class name “only_mobile” to display the logo only on mobile view.
Add this code in the Quick CSS field:
.only_mobile { display: none; }
@media only screen and (max-width: 989px) {
/* Add your Mobile Styles here */
.only_mobile { display: block; }
}
Best regards,
Ismael