Archived topic
Remove Mobile Sticky Logo
9 replies · Started by David on June 8, 2017
Hi Guys
whats the easiest way of removing the navigation bar logo from Mobile Sticky menu?
thanks
David
Try this:
@media (max-width: 768px) {
.navigation-logo {
display: none;
}
}
Nope doesn't work =(
I have checked the CSS and no errors (placed it at top and placed it without @media). No joy
Can you provide a link to your site? Thanks!
Try this CSS instead:
@media (max-width: 768px) {
.main-navigation.navigation-clone .navigation-logo.sticky-logo {
display: none !important;
}
}
Let me know.
Perfect thank you! But like dominoes.......
Simple way to left justify the hamburger menu?
Try this:
@media (max-width: 768px) {
.sticky-menu-logo .navigation-stick:not(.mobile-header-navigation) .menu-toggle {
float: left;
}
}
Great - thank you.
BTW I like the new logo =)
Oh just out of curiosity, why did the original fix for removing the logo not work?
I like the new logo too :)
The original code wasn't specific enough so it got overwritten.