- This topic has 1 reply, 1 voice, and was last updated 8 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Home Feature 10, 11, 12, 13’ is closed to new replies.
Home › Community Forums › Epik Theme Support › Home Feature 10, 11, 12, 13
Tagged: home feature widgets, latest posts
Is there a way to display home features 10-13 as a 2×2 grid when viewed in landscape/normal computer screen? Would like to know if this is possible with CSS.
I’m trying to recreate something like the ‘Online Marketing Advice’ section on the http://www.copyblogger.com home page, using widgets.
Thanks,
Anthony
Actually just figured this out. Fairly easy w/ the following CSS modifications:
.home-feature-10 {
float:left;
width:48%;
margin:0 1.3% 0 0;
}
.home-feature-11 {
float:right;
width:48%;
margin:0 1.3% 0 0;
}
.home-feature-12 {
float:left;
width:48%;
margin:0 1.3% 0 0;
}
.home-feature-13 {
float:right;
width:48%;
margin:0 1.3% 0 0;
}
Probably will have to play w/ the iPhone/iPad section of the stylesheet to perfect, but this basically does the trick.