Hi: I'd like to change the color of font for the items in the tab bar to white. I'd also like to change the font to be Helvetica. Please advise. Thank you.
Put the following code in your custom css Appearance -> theme options -> styling options -> custom css Code: #menu li.current_page_item a { color: black; } #menu li a { color: black; } #menu li a:hover { color: black; } #menu li a:hover.selected { color:black; } #menu .ddsmoothmenu li li { color:black; } #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover { color: black; } #menu .ddsmoothmenu li { color:black; } #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited { color: black; } #menu li.current-menu-item a:hover, #menu li.current-menu-parent a:hover, #menu li.current_page_parent a:hover, #menu li a:hover.selected { color:black; } #menu li a { font-family:Helvetica; } You can change the color to your color value. This will solve your problem. Thanks.