Archived topic
PIXEL problems
5 replies · Started by Ruth on April 26, 2021
Hello - I am using the PIXEL template and have noticed that on mobile devices the PIXEL logo is not replaced by the one I have installed http://www.kaysamanthadavies.com On a laptop the new logo I have installed is displayed but not on my mobile phone. have tested it on another laptop and another phone. Am using android if that's relevant. How do I fix this?
Hi Ruth,
Have you checked the mobile logo in customizer?
https://docs.generatepress.com/article/mobile-header/
Let me know :)
Hi Ying thanks - looked that up and have disabled mobile header and it is working. Is it possible to prevent the logo from being displayed on certain pages? I want to exclude it from the home page if poss...
Hi there,
you can add this CSS to remove the logo from the home page:
.home .site-logo {
display: none;
}
If you want that to only apply on mobile then use this instead:
@media(max-width: 768px) {
.home .site-logo {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Thanks - done it
Glad to be of help