I would like to make the footer completely black and only the footer font all white. Any ideas? http://www.instylewithmichelle.com Thanks!
Hello, Go to js > custom.js present in your theme directory and remove the code given below Code: //Cufon Replacement in heading jQuery(document).ready(function() { //Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6'); Cufon.replace('h1, h2, h3, h4, h5, h6,.content .post .date li', { fontFamily: 'MankSans-Medium', hover: true }); }); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer_wrapper { background: black; } .footer_wrapper a, .footer_wrapper{ color:white; } .footer_wrapper .footer h4 { color: white; }