How can I make the menu font, bold and possibly bigger? Also the same with the font that appears on the slider images.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. For menu: Code: ul.ddsmoothmenu li a { font-size: 16px !important; font-weight: bold; } For slider text (heading): Code: #slides .caption h2 { font-size: 25px !important; font-weight: bold; } For slider text: Code: #slides .caption p { font-size: 16px !important; font-weight: bold; } Thanks & Regards Pramod
How can I change the colors of the navigation text and the background of the nav bar? I would like the text white and the background of bar black.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #menu .ddsmoothmenu { background: black; } #menu li a { color: white; } It will resolve your issue. Thanks & Regards Yogesh Bhade