Hello, I would like to have custom colors for my menu as follows: 1) top row of menu buttons and drop down buttons: RED (all same color) 2) button font: WHITE (all buttons) 3) mouse hover over all buttons: GREEN Thank you for your help!
Hello, Firstly, Go to the Appearance -> Theme Options -> Styling Options panel in your dashboard and select the green color from the Theme Stylesheet section. And then paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #menu li.current-menu-item a{ background: red; } #menu li a { background: red; color:white; border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; } #menu .ddsmoothmenu li ul { background: red; border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; } #menu .ddsmoothmenu li li { background: red; border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; } This will solve your issue.