[Support request] Logo on mobile

Home Forums Support [Support request] Logo on mobile

Home Forums Support Logo on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #577745
    Andrei

    It’s possible to make the logo from header a little bigger on mobile?
    Thanks

    #577835
    David
    Staff
    Customer Support

    Hi Andrei,

    you can use this to change the size of the logo:

    @media (max-width: 320px) {
        .main-navigation .navigation-logo img {
            height: 60px;
        }
    }
    #578131
    Andrei

    Awesome, again a perfect solution.

    I noticed that on my iPhone 7 the logo is exactly on top, but on my brownser is at the middle of the bar…
    this is happening on your end?
    How i can debug this?
    Thanks

    #578154
    David
    Staff
    Customer Support

    Hi Andrei, a better alternative maybe to remove the padding from the logo and leave the size alone:

    @media (max-width: 320px) {
        .main-navigation .navigation-logo img {
            padding: 0 !important;
        }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.