I wanted to make the text of my posts black, so I found this code from another thread:

Discussion in 'BlackBird WordPress Theme' started by jasonb, Jun 12, 2013.

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

    jasonb New Member

    Joined:
    Apr 25, 2013
    Messages:
    23
    Likes Received:
    1
    Hello,

    Two questions:

    I wanted to make the text of my posts black, so I found this code from another thread:

    .page-content .content-bar p {
    font-size: 15px;
    color: black ! important;
    }
    .sidebar p {
    font-size: 15px;
    color: black ! important;
    }

    But now my fonts are all mismatched, and some post content is still grey. I'd like to keep the font style from the new code, and make all content and headings black. The headings should be a bit bigger, but otherwise all one font size. I'd like to keep the text color and size of footers and menus the same, but match the style to the new font.

    2. My slider text box is not big enough to enclose all the dots that track the slider images. Here's the link: http://northlibertyacupuncture.com/

    Thanks for your help! I really appreciate it.

    Jason
     
  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:
    .post_content h2 {
    color: black;
    font-size: 22px;
    }
    .page-content .content-bar p {
    font-size: 15px;
    color: black ! important;
    }
    .post_content ul li strong {
    font-size: 15px;
    color: black! important;
    font-weight: normal;
    }
    .post_content span {
    font-size: 15px;
    color: black ! important;
    font-weight: normal;
    }
    div {
    font-size: 15px;
    color: black ! important;
    }
    .sidebar ul li a {
    font-size: 15px;
    color: black! important;
    }
    .textwidget {
    font-family: Trebuchet MS;
    font-size: 14px;
    color: #688094;
    }
    #menu li a {
    font-family: Trebuchet MS;
    font-size: 14px;
    color: #688094;
    }
    This will solve your first issue.

    2). For the slider caption box issue,
    Paste the following code in your Custom CSS
    Code:
    .flex-caption {
    height: 138px;
    }
    you can adjust the value of height as per your requirement.
     
  3. jasonb

    jasonb New Member

    Joined:
    Apr 25, 2013
    Messages:
    23
    Likes Received:
    1
    Thanks, Piyush. I can't believe how great the support is here. One more little question: Is there a way I can see my changes right away. It takes several hours for the site to update, even after clearing my cache. Thanks again!
     
Thread Status:
Not open for further replies.

Share This Page