Logo size issue

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12561
    virpim82
    Member

    Hi,

    How can I make the logo change its size when viewed on a mobile device? The logo is enormous on a mobile phone, for example, and because of that only a part of the logo shows. I’ve used some custom code to center the logo and the solutions offered here on the forum won’t do anything.

    Thank you in advance!

    #12562
    virpim82
    Member
    This reply has been marked as private.
    #12577
    Veena
    Moderator

    Pls add the below custom CSS in themeoptions –

    @media only screen and (max-width: 767px)
    {
    #site-logo a img {
    max-height: 60%;
    max-width: 60%;
    }}
    @media only screen and (max-width: 479px)
    {
    #site-logo a img {
    max-height: 40%;
    max-width: 40%;
    }}
    
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Extinct Theme Support’ is closed to new topics and replies.