How Can We Help?

Search for answers or browse our knowledge base.

< All Topics
Print

How can resize the logo in tablet and mobile mode?

To resize the logo in tablet and mobile mode using CSS in the Divi Theme builder, follow these steps:

  1. Go to your Divi Theme builder settings.
  2. Locate the Custom CSS section.
  3. Add the following CSS code snippet
@media screen and (max-width: 980px) {
.et_pb_menu__logo img {
width: 250px;
}
}
  1. Modify the width value to the desired size for the logo in tablet view.
  2. Save your changes.