Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1488272

    Hi – How do I add a logo to the burger menu?
    Thank you for your help : )

    #1488275

    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.

    View post on imgur.com

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.