How do I change the font size of navigation menu? The menu fits on a computer but causes there to be a second menu on a tablet and I would like for it to only be one. Thanks!
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: @media only screen and (max-width: 960px) and (min-width: 767px){ #menu .ddsmoothmenu li a{ font-size: 14px; } } Adjust the value of font size as per your requirement. This will solve your issue.