Archived topic
Logo not displaying on mobile devices
1 reply · Started by Shawn on May 27, 2019
Viewing posts 1–2 of 2
Hi,
The logo at the site noted in my email isn't displaying on mobile devices. Here's code being used:
.site-logo {
width: 335px;
height: 85px;
}
@media (max-width: 768px) {
.site-logo {
width: 200px;
}
Any suggestions would be appreciated.
Thanks,
Shawn
Hi there,
You have this CSS added which is hiding the logo on mobile:
@media (max-width: 768px) {
.site-logo.navigation-logo {
display: none;
}
}
This archived topic is closed to new replies.