Home Page Services Feature Heading

Discussion in 'ButterBelly WordPress Theme' started by aupaircanada, Jul 14, 2014.

  1. aupaircanada

    aupaircanada Guest

    Joined:
    May 28, 2014
    Messages:
    8
    Likes Received:
    0
    I wish to change the colour and size of the text for the Home Page Services Feature Heading but am unsure what to input into the Styling Options/Custom CSS. I'l like the Heading to be centred in #8c8c8c colour and in H2 format.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature_mid_content .featurebox h2 {
    color: red;
    text-align: center;
    font-size: 20px;
    } 
    In place of "red" you can put your color or color code.
    You can change the value of "font-size" as per your requirement.
     
  3. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature_mid_content .featurebox h2 {
    color: #8c8c8c;
    text-align: center;
    font-size:20px;
    } 

    Thanks & Regards
    Gourav Shrivastava
     

Share This Page