Is there a way to make the Title Attribute of a menu item show up beneath the Menu?
For example, getting this menu here:
http://testing.sentinelpointe.com/
To look like this menu here:
Thank you!
Hey Andrea!
You can actually add html codes on the navigation label. Go to Appearance > Menus then edit the menu item label, add something like this:
Community<span class="descmenu">Senior Retirement</span>
Add this on Quick CSS:
.descmenu {
position: absolute;
bottom: -20px;
left: 13px;
width: 200px;
font-size: 10px;
}
Regards,
Ismael
Works great! Thank you!