Is there a way to add a second navigation menu? I need a second menu above the logo and either above or below that top info bar. Also, how do I make the text smaller on the navigation menu? Thanks!
Hello, Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard to change the font size of menu bar. Code: #menu .ddsmoothmenu li a { font-size: 12px; } You can change the value of "font-size" as per your requirement.
It didn't reduce the drop down menu pages. How do I also reduce the size of the text of the down down pages? Also, how do I reduce the white space between the page name and the edges of the button?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #menu .ddsmoothmenu li a { font-size: 12px; padding: 4px 4px 4px 4px; } #menu .ddsmoothmenu li li a{ font-size: 12px; } You can adjust the value of "font-size" and "padding" as per your requirement. This will solve your issue.