Hi all,
Is it possible to change the font size of the main navigation menu when viewing on a tablet please or once the screen size hits a certain size?
Thanks
Hi d24media!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 1024px) {
.av-main-nav>li>a { font-size: 11px; }}
It will decrease the font size on screens below 1024px
Best regards,
Yigit
Hi Yogit,
I found one of your older posts and modified the code to:
.av-main-nav > li > a { font-size: 11px !important; }
That now works thank you.