Hi, i have read a lot in this forum but couldn’t find an answer what solves my problem.
I would like to add subtitles to the header main menu. Is there any way to do so?
See an example of what I would like to realize here (green picture): “Adding Sub-Titles To Menu Links” / http://themeshaper.com/2009/03/30/wordpress-menu-tricks/
I already tried this but it didn’t work: https://kriesi.at/support/topic/display-menu-description-text-in-main-nav-menu/#post-353714
I’m not even sure if this fits my needs…
thanks
oliver
Hey Oliver!
The label field in each menu item accepts HTML tags, so you can put something like this there:
Title <span>subtitle</span>
Then you can target that with CSS:
.avia-menu-text span{
display: block;
}
That will place the span in its own line (like the example).
Best regards,
Josue