Support › Forums › Flex Theme › Two columns on homepage (home middle section) › Reply To: Two columns on homepage (home middle section)
November 29, 2015 at 4:18 am
#698
Moderator
You need to edit the style.css file. Go to line no. 718 and Replace the following CSS
.first,
.home-middle .featuredpage:nth-of-type(3n+1) {
clear: both;
margin-left: 0;
}
WITH
.first,
.home-middle .featuredpage:nth-of-type(2n+1) {
clear: both;
margin-left: 0;
}
============================
Replace (line number 691)
.one-third,
.two-sixths,
.home-middle .featuredpage {
width: 31.6239%;
}
WITH
.one-third,
.two-sixths {
width: 31.6239%;
}
=======================
Replace
.one-half,
.three-sixths,
.two-fourths {
width: 48.717948717948715%;
}
WITH
.one-half,
.three-sixths,
.two-fourths,
.home-middle .featuredpage {
width: 48.717948717948715%;
}
Cheers
Chinmoy