Remove fourth feature image

Discussion in 'ColorWay WordPress Theme' started by annand, Jan 14, 2013.

  1. annand

    annand New Member

    Joined:
    Jan 13, 2013
    Messages:
    5
    Likes Received:
    0
    I only want three feature images. How can I remove the fourth? Thanks.
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    To make three featured image you need to do the customization work, As of now i am sending you the code to hide the fourth featured area.
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    .last {
    display: none;
    }
    This will solve your problem.

    Thanks.
     
  3. annand

    annand New Member

    Joined:
    Jan 13, 2013
    Messages:
    5
    Likes Received:
    0
    Thank you. I'm not seeing this work. I already have code in that part to turn off linking for my images. Not sure which comes first or how to combine the two. Thanks.
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Appearance -> theme options -> styling options -> custom css

    Code:
    .one_fourth.middle.last {
    display: none;
    }.one_fourth {
    width: 29%;
    margin-right: 4%;
    }
    Code order is not an issue. You can add code in any order.
     
    annand likes this.
  5. annand

    annand New Member

    Joined:
    Jan 13, 2013
    Messages:
    5
    Likes Received:
    0
    This is just what I needed. Is there any way I can now center these images?
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  7. annand

    annand New Member

    Joined:
    Jan 13, 2013
    Messages:
    5
    Likes Received:
    0
    buttontwillandtwine.com
    Thanks!
     
  8. 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:
    .one_fourth {
    width: 29%!important;
    margin-right: 4%!important;
    }
    Adjust its value as per your requirements.
     

Share This Page