Followed the steps in this article.
https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/
The issue I have is with vertical alignment, the code on the article referenced above aligns the WHOLE menu.
I just need to budge up the menu items that are on two lines.
i’ve tried margin-top:-5px etc and it has zero effect.
Any ideas?
Hi!
Set a custom class (ex: two_line) to those two-line elements and add this to Quick CSS:
.two_line a {
line-height: 80px !important;
}
Best regards,
Josue
Excellent, thank you Josue!