Site logo

[Resolved] How to make logo responsive

Home Forums Support [Resolved] How to make logo responsive

Home Forums Support How to make logo responsive

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2188918
    George

    The logo on desktop looks fine but on mobile devices, it’s very large proportionally to the other content. Please look at how it looks: https://genderunicorns.com/

    How to make it more responsive?

    #2188943
    iQfy Media

    Add this to your custom css:


    @media
    (max-width: 570px)
    {
    .site-header .header-image{max-width:90px;}
    }

    The new logo max-width kicks in when the screen has lower width than (in this case) 570px. Adjust values to taste.

    #2189014
    Ying
    Staff
    Customer Support

    Hi George,

    You can try this CSS:

    @media (max-width: 768px) {
        .site-header .header-image {
            max-width: 100px;
        }
    }

    Hi iQfy Media,

    Thanks for help 🙂

    #2189038
    George

    looks great, thanks to both of you 🙂

    #2189048
    Ying
    Staff
    Customer Support

    No problem 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.