[Resolved] Logo not resizing

Home Forums Support [Resolved] Logo not resizing

Home Forums Support Logo not resizing

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #217152
    Craig

    Hello,
    When I resize my site to say 1024 pixels wide, the header logo drops below the navigation menu.

    Shouldn’t the logo resize down?

    http://semssp.staging.wpengine.com/

    Thanks!
    Craig

    #217268
    Tom
    Lead Developer
    Lead Developer

    Hmm, I’m afraid not. Images only know to resize when they hit the edge of the container, not when another element hits them.

    You can resize it manually though using media queries:

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

    Adjust px and add more media queries as needed 🙂

    #217288
    Craig

    Sounds good. Thanks!

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