Replacing circle feature with "normal" rectangular images?

Discussion in 'BlackBird WordPress Theme' started by tasvia, May 30, 2013.

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

    tasvia New Member

    Joined:
    May 23, 2013
    Messages:
    11
    Likes Received:
    1
    Hi,

    I love BlackBird but I do not like the circular feature images. Is there any way to replace the with standard "normal" rectangular images (without any color borders)? The perfect comparison would be the feature images from ColorWay.

    edit:

    In connection to that, the "READ MORE"-image below the circular-image, I would also like to remove if I could have "normal" rectangular images. How to do that?

    I've tried searching for it but havn't found it. Sorry if I've missed it.

    Regards,

    Daniel
     
  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:
    .feature-content-inner .circle {
    background: none;
    }
    .feature-content-inner .circle img {
    width: 235px;
    height: 150px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -khtml-border-radius: 0px;
    }
    .feature-content-inner .circle {
    margin-left: 0px;
    }
    You can adjust the value of height and width for the image as per your requirement.

    2. For you second issue, paste the following code in your Custom CSS
    Code:
    .feature-content-inner .read-more {
    display: none;
    }
    This will remove the read more button.
     
  3. tasvia

    tasvia New Member

    Joined:
    May 23, 2013
    Messages:
    11
    Likes Received:
    1
    Works perfectly. Excellent service! Thank you very much!
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page