Hello there,
You can achieve it with this simple CSS code:
`
.mainnav ul.menu > li > a {
text-transform: uppercase;
}
`
Add it to Appearance > Customize > Additional CSS from dashboard.
Regards,
Kharis
Thread Starter
sec55
(@sec55)
OK, so it does require custom CSS. I was thinking there was an option in the Customize section. Thanks!
Thread Starter
sec55
(@sec55)
Another question on the menu: The text size in the dropdown menus seems to be bigger than that of the top-level items. I tried to target it with:
.mainnav ul.menu > li > a > li {
and
.mainnav ul.menu > li > a > li > a {
Neither worked. How should I proceed?
Hello there,
Try this code:
#mainnav .sub-menu a {
font-size: 12px !important;
}
Regards,
Kharis
You’re welcome!
Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.
Regards,
Kharis
Thread Starter
sec55
(@sec55)
Replying so I can mark as resolved.