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