Hi,
I'd like to remove the third column on the front page of the display theme, basically I just want 2 columns of equal width on the front page, I'm wondering if someone could help in doing so!
Thank you
Hi,
I'd like to remove the third column on the front page of the display theme, basically I just want 2 columns of equal width on the front page, I'm wondering if someone could help in doing so!
Thank you
Hey,
in display\theme_options\mainpage.php
replace:
"count" => 3),
with:
"count" => 2),
and add following code to style.css:
.home .wrapper .box_small {
width: 420px;
}You must log in to post.