I am attempting to change the font color for the text under the three pictures on the main screen. I can't find the code for it in editor.
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature_content p { color: red; }
Got it. However, how do I get rid of the shadow effect on that font? Also, how do I get the text above the three pictures to be a different color as well? One other question as well. If I want to get rid of the "comments and responses" section on my site, how would I go about doing that? Thanks!
1.For your first issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature_content p{ text-shadow:none; } 2.For your second issue Go to header.php present in your theme directory and remove the code given below Code: Cufon.replace('h1, h2, h3, h4, h5, h6', { fontFamily: 'Droid Sans', hover: true }); Sending image for reference Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature_content h2{ color:red; } 3.For your third issue Go to page.php present in your theme directory and remove the code given below Code: <h3>Comments & Responses</h3> <?php comments_template(); ?> Sending image for reference Use same process for (template-fullwidth.php and single.php) also.