Change feature circle size

Discussion in 'BlackBird WordPress Theme' started by kissmix12, May 29, 2013.

  1. kissmix12

    kissmix12 New Member

    Joined:
    May 28, 2013
    Messages:
    2
    Likes Received:
    0
    Hi, does anyone know how to change the size of the featured images that show on the homepage? I love the circular design, but the images need to be a bit bigger to look good with the rest of the page.

    I have tried playing around with the CSS but have only managed to extend the 'circle' container size, rather than the actual circular images.

    I am quite new to all of this, so it may be that I'm missing out something quite straightforward!

    Thanks
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .feature-content-inner .circle img {
    width: 200px;
    height: 200px;
    }
    .feature-content-inner .circle {
    width: 215px;
    height: 215px;
    }
    Adjust the value of Width and Height as per your requirement.
    This will solve your issue.
     
  3. kissmix12

    kissmix12 New Member

    Joined:
    May 28, 2013
    Messages:
    2
    Likes Received:
    0
    That's great! Thank you so much. The only trouble I'm having now is to get the text below the images to line up straight - since the images have been enlarged they have moved over to the right slightly, and I can't get the h2 to do the same.
     
  4. 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 .circle{
    margin-left:20px;
    }
    Adjust its value as per your requirements.
     

Share This Page