Circle Feature

Discussion in 'BlackBird WordPress Theme' started by ebonymclaughlin, Jun 25, 2013.

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

    ebonymclaughlin New Member

    Joined:
    Feb 12, 2013
    Messages:
    8
    Likes Received:
    0
    Hi,
    How do I remove the 3 circles from Blackbird?
    I want the blog feature to appear directly under the slider.
    Many thanks
    E
     
  2. 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-content-inner{
    display:none;
    }
    Now,

    Go to

    Appearance > Theme Option > HomePage Settings > Home Page Testimonial On/Off

    and turn it off.
     
  3. ebonymclaughlin

    ebonymclaughlin New Member

    Joined:
    Feb 12, 2013
    Messages:
    8
    Likes Received:
    0
    Thank you Gourav.
    Can you also please tell me how to make the "Home Page Header" smaller? And an option to remove it?
    How can I then move upwards the blog and newsletter sections so it sits closer under the slider?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    1. Paste this code in Custom CSS (Appearance > Theme Option > Styling Option > Custom CSS) to make the "Home Page Header" smaller.
    Code:
    .content h1 {
    line-height: 35px;
    font-size: 25px;
    }
    adjust the value of line-height and font-size as per your requirement.

    2. If you want to remove "Home Page Header" section then paste the code given below in Custom CSS.
    Code:
    .content h1 {
    display: none;
    }
    3. Paste this code in Custom CSS
    Code:
    .feature-post {
    margin-top: 0px;
    }
    .feature-content {
    display: none;
    }
    This will solve your issue.
     
  5. ebonymclaughlin

    ebonymclaughlin New Member

    Joined:
    Feb 12, 2013
    Messages:
    8
    Likes Received:
    0
    Thank you that works :)
     
Thread Status:
Not open for further replies.

Share This Page