[CSS] Move articles on home page

dragosdydy

Junior Member
Joined
Jan 23, 2012
Messages
116
Reaction score
50
Hi all. I have a theme that have options to display 4 custom categories on the home page. But the categories articles are one under the other.
The articles are one by one only if those are from the same category, but if i select to show only 1 article from the category, the articles will be one under the other.

I tried a lot of things but i wasn't able to place two articles from different categories one by one. I will show you the example, website and the CSS source. Thanks a lot.

Live Theme: http://leadrights.com/
CSS File: http://pastebin.com/XQ9gKusK

How it is now: http://i.imgur.com/1QiYVVX.jpg
How i want to modify: http://i.imgur.com/sY7TinI.jpg

Thanks a lot! :(
 
This should work dude.
Code:
div#content .list-cat-one, div#content .list-cat-two
{
width: 300px;
}
div#content .list-cat-one
{
float: left;
}
div#content .list-cat-two
{
float: right;
}
 
Back
Top