Is there a way to have my menu font be capital case but have the first letter of each word be larger?
Hey mcraig77,
Try adding this css code in QUick CSS (located in Enfold > General Styling):
#top #header .av-main-nav > li > a .avia-menu-text {
text-transform: uppercase;
}
#top #header .av-main-nav > li > a::first-letter {
font-size: 24px;
}
Just adjust the font size value :)
Best regards,
Nikko
Thanks, that works but it seems to move the first letter up about one pixel so the items are not on the same baseline. I might not use this feature afterall.
Thanks!
Hi,
Glad we could help. It might need to adjust the line height property :) but that css code is only working for several browsers since it’s a fairly new feature :)
Best regards,
Nikko
How would I adjust that baseline if I wanted to go down this route?
Hi,
Try adding this css property
float: left;
line-height: 48px;
inside of
#top #header .av-main-nav > li > a::first-letter {
}
If it’s not right adjust the line-height property a bit.
Best regards,
Nikko