Mobile logo size

Hi all
Is it possible to set a different logo size for mobile displaying?
Could it be done with CSS?
Thanks.

  • 816
  • More
Replies (4)
    •  Hello Claudio Acosta !

      Yes, it's possible to do via CSS. In the Studio->[Your template name]->Styles->Custom Styles area you need to add somth like:

      @media (min-width: 768px) and (max-width: 1024px) {

      -logo-container {

      width: 200px;

      height: 50px;

      }

      }

        • Hello LeonidS !

          Having same problem, need to make mobile logo small in order to display ok the logo and icons.

          Tryed with this solution on custom styles of template, but does not change nothing at my site.

          Template Styles->Custom

          image_transcoder.php?o=bx_froala_image&h=5415&dpx=1&t=1631823719

          Css i would need to change, that <img style="max-width:21.875rem;max-height:3.875rem;"

          image_transcoder.php?o=bx_froala_image&h=5416&dpx=1&t=1631823769

          Is there any way to complish this?

          Many thanks!

          • The screen size for i.e a iphone 12 pro is 390 x 844 px. So in order to let this work you can put something in like this:

            }

            @media (min-width: 360px) and (max-width: 1024px) { -logo-container {width: 80%; height: 40px; margin-right: 5px; } }

            Login or Join to comment.