Hello, I was wondering if there was a way to remove one of the four feature images from the homepage of the ColorWay theme? I would like there to only be three images. I would also like for the three images to be centered on the page and in line with their feature heading and text. Thank you so much for your time, hes229
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .one_fourth { width: 32% ! important; margin-right: 2% ! important; } div.columns div.one_fourth:nth-child(1) { display: none; } You can adjust the value of "width" and "margin-right" as per your requirement. This will solve your issue.