Delete Feature Image Placements

Discussion in 'Poloray WordPress Theme' started by chaddocs, Feb 8, 2013.

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

    chaddocs New Member

    Joined:
    Dec 31, 2012
    Messages:
    7
    Likes Received:
    0
    I'm trying to maintain a homepage with only two feature images. I'd like to delete the other two altogether and keep the two remaining in the center of the page. Does anyone know how I can do this?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature_inner_box.first{
    display:none;
    }
    .feature_inner_box.last{
    display:none;
    }
    .feature_inner_box {
    margin-left: 200px;
    }
    @media only screen and (min-width: 768px) and (max-width: 960px) {
    .feature_inner_box{
    margin-left:140px;
    }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .feature_inner_box{
    margin-left:140px;
    }
    }
    @media only screen and (max-width: 480px) {
    .feature_inner_box{
    margin-left:40px;
    }
    }

    This will solve your issue.
     
  3. chaddocs

    chaddocs New Member

    Joined:
    Dec 31, 2012
    Messages:
    7
    Likes Received:
    0
    Thank you Gourav. That worked perfectly. I appreciate the prompt response.
     
Thread Status:
Not open for further replies.

Share This Page