How to change number of columns on front page

Discussion in 'ColorWay WordPress Theme' started by inkthemerwp, Dec 18, 2013.

  1. inkthemerwp

    inkthemerwp New Member

    Joined:
    Dec 13, 2013
    Messages:
    2
    Likes Received:
    0
    Using the Colorways Pro theme, how would you change the number of columns under the feature image from 4 to 3 columns, or any other number like 1 or even 5?

    Would this have to be changed every time the theme was updated?

    Thx in advance.
     
  2. Piyush

    Piyush Support Staff

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

    If you want to reduce the feature column then you can accomplish it through style custom css code but
    if you want to increase feature column then you can add the custom html code for extra feature column
    in the front-page.php file present in your theme directory.
     
  3. inkthemerwp

    inkthemerwp New Member

    Joined:
    Dec 13, 2013
    Messages:
    2
    Likes Received:
    0
    Would you be willing to tell me what the code is, as in other examples I have seen? I am trying to change it to 3 columns.
     
  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:
    #content .one_fourth.middle.last{
    display:none;
    }
    #content .one_fourth{
    width:29%;
    }
    This will solve your issue.
     

Share This Page