Hello! I have a grid row with the css below:
#fixednavigation2 {
position: fixed !important;
top: 40px !important;
z-index: 3 !important;
border-bottom: 1px solid #dadedf !important;
}
This is my main navigation for the site. It was working great until just today, the links seem to be “clickable” below the link rather than on the link. Do you have any idea why this is happening? Note that once you scroll down the page a bit the links work properly.
Hey!
Try adding this code to the Quick CSS:
@media only screen and (min-width: 767px) {
ul#mobile-advanced {
display: none;
}
}
Cheers!
Josue
wow! worked amazingly! thank you so much Josue :)
You are welcome, glad to help :)
Regards,
Josue