Hi,
On my webpage, I have a main navigation, then at subevel dropdown, and from this the sub-sub levels pops out. But they pop out to the right, which means, they don’t appear – at least not on my laptop. How can I set them to open on the left side of the dropdown instead?
I’ve tried with this code in the css, but it doesn’t seem to work for me:
#top .av-main-nav ul ul {
left: 207px;
}
Hey Malene,
You would have to use a negative value:
#top .av-main-nav ul ul {
left: -207px;
}
Make sure that you clear caching and minification from your optimisation plugin before checking the changes.
Best regards,
Rikard
That works perfectly!
Thank a lot, Rikard :-)