Hello, I've posted this problem before and have followed your instructions but I see no changes in the 4 1. Feature headings... I've gone to js directory and removed the cufon line of code and inserted this code in custom CSS #content .one_fourth h3 a{ text-align:center; font-family arial; Nothing changes! I'm showing this website to our Board on Monday and really need to be able to make this change.. HELP! 2. on the Search button on Footer of my site, need to change the word "SEARCH" text color to black www.wptest.greencatdatadesign.com Thanks for your help!
Hello, 1. For your first issue, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: #content .one_fourth h2 { font-family: symbol; text-align: center; } #content .one_fourth h2 a{ color: red; } In place of "symbol" and "red" you can paste your font and color or color code respectively. This will solve your issue. 2. For your second issue, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .footer #searchform #s { color: black; } In place of "black" you can put your color or color code. This will solve your issue.