Need help with Several Items

Discussion in 'BlogsTrend WordPress Theme' started by rvu28, Dec 7, 2013.

  1. rvu28

    rvu28 New Member

    Joined:
    Aug 15, 2013
    Messages:
    8
    Likes Received:
    0
    Hi Support, Nice theme..

    I finally need help with the following, because I can't find it anywhere in this forum.

    1. Is it possible to change the background color of the Top Menu strip at the very top above the logo?
    1.2 Also the strip bar in every post under each headline (How can I change the color to other than the default color/ or just make it transparent.
    2. Need to change the color, Size, and font type of the post family.
    3. Need to change the background color of both footer and footer widget area, can I do that?
    4. Need to decrease the gap between the category menu and the first post box in the homepage.
    5. Need to increase the gap between the Category menu and the Head banner & Logo at the top.

    Thank you kindly for your help. (Please see the attached photo for your reference)
     

    Attached Files:

  2. rvu28

    rvu28 New Member

    Joined:
    Aug 15, 2013
    Messages:
    8
    Likes Received:
    0
    Hi, Support Team, Any help on any of these request. Please. Thank you
     
  3. Piyush

    Piyush Support Staff

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

    1. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .top_menubar {
    background: red;
    }
    .blog .post .post_meta {
    background: red;
    }
    In place of "red" you can put your color or color code.

    2. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .blog .post .post_content p {
    font-family: symbol;
    color: red;
    font-size: 15px;
    }
    In place of "symbol" ,"red" and "15px" you can put your font type, color or color code and font size respectively.

    3. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .footer_wrapper {
    background: red;
    }
    .footer_bottom {
    background: red;
    }
    In place of "red" you can put your color or color code.

    4. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content_wrap {
    padding-top: 2px;
    }
    You can adjust the value of "padding-top" as per your requirement.

    5. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .header {
    padding-top: 18px;
    padding-bottom: 2px;
    }
    You can adjust the value of "padding-top" and "padding-bottom" as per your requirement.
     

Share This Page