Archived topic
remove logo from home page
7 replies · Started by Ruth on August 11, 2021
Hi - can you tell me how to remove the logo to the left of the navigation buttons on the home page only please? https://staging.crescentgardening.com/
Hi there,
Try this CSS:
.home .site-logo {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
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!