Category's in two columns

How do I make the category's into two columns?

Examples:
http://www.skial.com/forum/
http://www.facepunch.com/

See if this works:
Code:
.node .nodeText {
margin-right: 0 !important;
}
 
.node .nodeLastPost,
.node .tinyIcon {
display: none !important;
}
 
.node .forum.level_2,
.node .page.level_2,
.node .category_forum.level_2 {
width: 49%;
float: left;
min-height: 70px;
}
 
.nodeList .node.level_1 {
clear: both;
}
 
Top Bottom