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.
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.
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.
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.