Archived topic
How to get a menu where the menu is right next to the logo on the left hand side
33 replies · Started by Andrew on March 25, 2019
Hi David,
Sorry to be a pain, but it still has the same problem. Have added the edited CSS...to no avail
Any ideas (sorry this is dragging on) - just need it working :)
Can you double check that CSS has saved in the Customizer? If it is then can you clear any caches as i am not seeing the updated CSS on the site.
Hi David
Yes, I did that initially but it messes up the desktop header of the site (the menu disappears when scroll down), so reverted it back to the first one you gave me. I did delete the cache.
Can I give you access to the site for you to take a look at? If so, how do I do that here?
Can you remove all the CSS. And add this:
@media (min-width: 768px) {
.main-navigation:hover .navigation-logo img {
-webkit-filter: invert(1);
filter: invert(1);
transition: 0.2s ease-in;
}
.main-navigation:hover {
background-color: #ffffff;
transition: 0.2s ease-in;
}
.main-navigation:hover ul li a {
color: #000000 !important;
transition: 0.2s ease-in;
}
}