front page feature size

Discussion in 'ColorWay WordPress Theme' started by mihaobal, Feb 19, 2014.

  1. mihaobal

    mihaobal New Member

    Joined:
    Jan 6, 2014
    Messages:
    2
    Likes Received:
    0
    Hi,

    I would like to have 3 feature images on front size (already found code for this) however, I need fist image to be 50% wide and other two 25% wide each.

    How can I do that?

    Tnx
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Undo previous customization that remove one feature column.
    Now paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
     #content > div.columns > div:nth-child(2) {
    display: none;
    }
    #content > div.columns > .one_fourth:nth-child(1) {
    width: 48%;
    }
    #content > div.columns > .one_fourth:nth-child(3) {
    width: 22%;
    }
    #content > div.columns > .one_fourth:nth-child(4) {
    width: 22%;
    }
    
    This will fulfill your requirement and remove the second feature section.
     

Share This Page