Logo image requirements

Hello,
What is the best way to upload the logo?
I want it to look small, but then the resolution is affected, if I increase the resolution then the logo looks too big.
Any idea? can it be placed as a vector?
Thank you

I recommend using SVG format, logo images are displayed in the original image size but you can adjust this via CSS tweaks, e.g. using media query for different screen sizes if required.

1 Like

Example CSS tweak:

.header-logo img {
  width: 200px;
  height: 133px;
}

@media (max-width: 767px) {
  .header-logo img {
    width: 150px;
    height: 150px;
  }
}
1 Like

Thanks for the example!

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