Hello: could you let me know what the .css is to... 1.) add a color background to the footer area 2.) remove the white outline around the headings and change font color for the text (headings and paragraph) Thank you, appreciate it much.
Hello, 1. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: div.footer-wrapper { background: red; } div.footer_bottom { background: red; } In place of "red" you can put your color or color code. 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer-wrapper .footer_widget h6 { text-shadow: none; color:black; } div.footer_widget { color: black; } .footer-wrapper .footer_widget a { color: black; } In place of "black" you can put your color or color code.