Logo not resizing correctly

Our logo is not resizing correctly in different browsers. It works fine in Chrome and Opera, but resizes too small in Safari. On other laptops, it does not display at all. Can you help?

Hi Sandeep,

The trick to prevent the image from getting too small, is to force a minimum width on the image. Please go to the Image element options and click the Customize tab, then click the Element CSS option:

You can add the code below into the Element CSS option:

$el {
  min-width: 150px;
}

Feel free to change 150 to whatever value you like.

You can read more about the Element CSS feature here.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.