How to equalize the margins of the three feature columns

Discussion in 'ColorWay WordPress Theme' started by jaelle33, May 23, 2014.

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

    jaelle33 Guest

    Joined:
    May 16, 2014
    Messages:
    8
    Likes Received:
    0
    Hello,

    I put the code into the custom CSS to change from four feature columns to three on the Home Page. But the three columns are not centered on the page, they are to the left. That is, the left edge of the first column lines up with the left edge of the slider but the right margin is to the right of the right edge of the slider. How can I fix this so that the three columns are aligned on the page?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Do let us know your website link.

    Thanks & Regards
    Gourav Shrivastava
     
  3. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .content img {
    width: 100%;
    }
    #content .one_fourth {
    width: 30%;
    margin-right: 0%;
    }
    #content .one_fourth:nth-child(1) {
    margin-right: 5%;
    }
    #content div.one_fourth.middle {
    margin-right: 5%;
    } 
    This will solve your issue.
     
  4. jaelle33

    jaelle33 Guest

    Joined:
    May 16, 2014
    Messages:
    8
    Likes Received:
    0
    Thank you. That worked.
     
Thread Status:
Not open for further replies.

Share This Page