Font colour in pages and posts

Discussion in 'BlackBird WordPress Theme' started by faraway, Apr 21, 2014.

Thread Status:
Not open for further replies.
  1. faraway

    faraway Member

    Joined:
    Nov 23, 2012
    Messages:
    56
    Likes Received:
    2
    Is it possible to change the colour for the default text colour in all posts and pages?
     
  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:
    .page-content p {
    color: red;
    }
    .page-content li{
    color: red;
    }
    .page-content h1,.page-content h2,.page-content h3,.page-content h4,.page-content h5,.page-content h6 {
    color: red;
    }
    .page-content span {
    color: red;
    }
    .page-content a{
    color: red;
    }
    
    In place of "red" you can put your color or color code.
    This will solve your issue.
     
  3. faraway

    faraway Member

    Joined:
    Nov 23, 2012
    Messages:
    56
    Likes Received:
    2
    Thanks, Piyush. That's fantastic! Much appreciated.
     
Thread Status:
Not open for further replies.

Share This Page