Hi, could you please tell me how to change the colors to a specific color code for: 1. Menu 2. Footers This is just for the background color, not the text. Thank you. Erin
Hello, 1. For Menu issue, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu li.current-menu-item a, #menu li.current_page_item a { background: #3ca7c7; } #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover{ background: #3ca7c7; } #menu .ddsmoothmenu { background: #4f8bc9; } You can put your color or color code inplace of "#3ca7c7" and "#4f8bc9" . 2. For the footer issue, Paste this code in Custom CSS Code: .footer { background-color: #4f8bc9; } You can put your color or color code inplace of "#4f8bc9" . This will solve your issue.
Thank you, that worked perfectly. Could you please give me the code to change the background color of the drop down menu. Thank you.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited { background-color: red; } #menu .ddsmoothmenu li li{ background-color: red; } Inplace of "red" put your color code.