Change Font for 4 Feature Headings

Discussion in 'ColorWay WordPress Theme' started by mleatherman, Sep 28, 2013.

  1. mleatherman

    mleatherman New Member

    Joined:
    Sep 12, 2013
    Messages:
    23
    Likes Received:
    0
    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!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     

Share This Page