Skip to main content
All CollectionsTroubleshooting and FAQsFrequently Asked QuestionsResponsivness
How to Display a Different Logo Image on Mobile Devices
How to Display a Different Logo Image on Mobile Devices

Learn how to use the Menu module, and take advantage of Divi’s responsive design features to easily switch between desktop and mobile logos.

Updated over a week ago

Ensuring your website looks great on all devices often requires customizing elements for mobile users. One effective customization is displaying a different logo image on mobile devices.

In this article, we will guide you through the process of using Divi's Menu Module to display a different logo image on mobile devices and changing the logo image using custom CSS Code.

Display a different Logo image on mobile devices using the Menu module

  1. Open the Menu module settings by clicking on the Gear icon

  2. Go to the Content tab → Logo and upload your logo image

  3. Enable the Responsive Settings for the Logo option by clicking on the Phone icon

  4. Click on the Phone tab

  5. Replace the Logo image with the one that you want to show on mobile devices

Display a different Logo image on mobile devices using a custom CSS code

Notes:

  • This can be used if you are using the default Divi's Header layout

  • If you are using the Menu module, use the previous steps

  1. Go to WordPress Dashboard → Media

  2. Click on the Add New button to upload a new image

  3. Upload the image that is going to be used as the mobile logo image

  4. Click on the image (once it is uploaded) and click on the Copy URL to Clipboard

  5. Go to Divi → Theme Options → General Tab → Custom CSS and add this CSS code:

    @media (max-width: 767px) {
    #logo {
    content: url("http://yourwebsite.com/mobile_logo.png");
    }
    }

Note: In the above CSS code, replace http://yourwebsite.com/mobile_logo.png with the actual image URL that you want to display on mobile devices.

Did this answer your question?