Site logo

[Resolved] Resize mobile logo

Home Forums Support [Resolved] Resize mobile logo

Home Forums Support Resize mobile logo

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1904985
    Gerrit

    Hi,

    Im trying to resize the mobile logo for my page, but I cant figure out how. This is the css I used:


    @media
    (max-width: 768px)
    .site–logo.mobile-header-logo{
    height: 100px !important;
    width: auto;
    }

    But this didnt work. How do I change it?

    Thanks.

    https://klimaposten.no

    #1904991
    Elvin
    Staff
    Customer Support

    Hi there,

    Try this:

    @media (max-width: 768px)
    .site-logo.mobile-header-logo,
    .site-logo.mobile-header-logo img {
        height: 100px !important;
        width: auto !important;
    }
    }
    #1904993
    Gerrit

    That did not seem to help. Any other suggestions?

    #1904999
    Elvin
    Staff
    Customer Support

    Ah right my bad. I’ve updated the CSS on the previous reply to correct the syntax issue.

    You can try it again.

    See it in action here – https://share.getcloudapp.com/X6uldkGQ

    #1905001
    Gerrit

    Thanks, I can see it works through your link, but when I check on my iPhone the logo is still tiny..?

    #1905268
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    #mobile-header .mobile-header-logo img {
       height: 100px;
       width: auto;
    }
    #1906261
    Gerrit

    Perfect, that worked! Thank you.

    #1906518
    David
    Staff
    Customer Support

    Glad to hear that!

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