Home Forums Lorina Logo Size on mobile

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #11824
    linalakk
    Participant

    How can i make Logo block smaller for mobile view? It covers most of the screen and its hard for customer to make a order.

    #11829
    Andy
    Keymaster

    You can make the image have a maximum height or width, with some custom CSS code.

    maximum height:

    @media only screen and (max-width: 768px) {
        img.custom-logo {
            max-height: 100px;
            width: auto;
        }
    }

    or use maximum width if you prefer:

    @media only screen and (max-width: 768px) {
        img.custom-logo {
            max-width: 150px;
        }
    }

    The custom CSS should be added to ‘Customize’ > ‘Additional CSS’.
    Change the max-height or max-width size to your own preference.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Logo Size on mobile’ is closed to new replies.