I have used the following code to move the navigation menu down:
.main_menu ul:first-child > li a .avia-menu-text {
top: 80px;
position: relative;
}
The menu moved, but now I have another problem: the old position where the menu used to be is still linked (when I hover over the old menu spot that’s now empty, I can see it being linked to corresponding pages).
How do I remove the links in the old menu spot? I only want my menu to be linked, not the area above it.
Hey goforyourdreams!
Please remove your code and use following one
#top .av-main-nav > li > a {
height: 35px;
top: 80px;
position: relative;
}
Cheers!
Yigit
Awesome, thanks!