Logo Not Looking Correct - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Logo Not Looking Correct

NO

Nicole Otto

Template 1 week ago

I am having an issue with the logo on this website. I have tried to adjust it and it just doesn't give me enough space. It squishes the logo quite a bit on the desktop version. For mobile and tablet there are white gaps above the logo and menu.

0
1 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 1 week ago #209785

Hello Nicole,

Thank you for reaching out to us.

We have a design that works for most cases; however, in your situation, your logo is a bit large. You added it to the topbar, but on mobile, the topbar doesn’t display a logo. Instead, the logo was added to the header for mobile, which is why you were seeing these issues.

I have fixed it by applying some CSS adjustments.

/* Mobile and small devices */
@media (max-width: 991px) {
    #sp-header-topbar {
        display: none;
    }
}

/* Medium devices (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    div#sp-logo .logo,
    div#sp-logo .logo a {
        display: block;
        width: 360px;
    }

    .logo-image {
        height: 60px !important;
        width: 150px;
    }

    #sp-header.lg-header .sp-column {
        height: auto;
        margin-top: 10px;
    }

    #sp-header-topbar {
        display: none;
    }
}

/* Large devices (1200px and above) */
@media (min-width: 1200px) {
    div#sp-logo .logo,
    div#sp-logo .logo a {
        display: block;
        width: 360px;
    }

    .logo-image {
        height: 170px;
        width: 340px;
    }
}

Thanks,

0