Site logo

Archived topic

remove logo from home page

7 replies · Started by Ruth on August 11, 2021

Viewing posts 1–8 of 8

Hi Leo - I installed that but the logo is still there! Copied and pasted and doubled checked I had correct coding.

Hi there,

Hi Leo – I installed that but the logo is still there! Copied and pasted and doubled checked I had correct coding.

I've checked the site and I didn't see it being applied/added.

Can you share w/ us how you've added the CSS?

Hi Elvin - I have added it via Appearance / customise/additional css - just taken a look and it is there

Hi there,

you added the CSS inside an @media query, so its only being removed on mobile.
This how that CSS looks:

@media (max-width:768px) {
    .lsi-social-icons {
        text-align: center !important;
    }

    .home .site-logo {
        display: none;
    }

}

Replace that with:

.home .site-logo {
    display: none;
}

@media (max-width:768px) {
    .lsi-social-icons {
        text-align: center !important;
    }
}

So I did David - many thanks - working now :)

Glad to hear that!

This archived topic is closed to new replies.