- This topic has 2 replies, 2 voices, and was last updated 6 years, 5 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Two columns on homepage (home middle section)
Tagged: two columns home
Hi there,
Here I have my own demo up: http://pjoweb.nl/flexdj/
Instead of three columns, I would love to have two columns on my home page in the home middle widget area section.
Can you tell me how to do this?
Thanks in advance and kind regards,
Dee
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
Great, Thanks, Paul!