Can't change font color

Discussion in 'Themia WordPress Theme' started by rochesterjason, Jan 10, 2013.

  1. rochesterjason

    rochesterjason New Member

    Joined:
    Dec 24, 2012
    Messages:
    4
    Likes Received:
    0
    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.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature_content p {
    color: red;
    }
     
  3. rochesterjason

    rochesterjason New Member

    Joined:
    Dec 24, 2012
    Messages:
    4
    Likes Received:
    0
    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!
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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

    [​IMG]


    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 &amp; Responses</h3>
                  <?php comments_template(); ?>
                

    Sending image for reference

    [​IMG]


    Use same process for (template-fullwidth.php and single.php) also.
     

Share This Page