M Matthew Hawley Well-known member Feb 3, 2013 #1 How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/
How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/
Shelley Well-known member Feb 3, 2013 #2 yolulz said: How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/ Click to expand... Haven't tested but i checked through firebug and this might work for you. Paste in the EXTRA.css template Code: .node.level_2 { float: left; width: 50%; } .node.level_1 { clear: left; } Upvote 0 Downvote
yolulz said: How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/ Click to expand... Haven't tested but i checked through firebug and this might work for you. Paste in the EXTRA.css template Code: .node.level_2 { float: left; width: 50%; } .node.level_1 { clear: left; }
ArnyVee Well-known member Feb 3, 2013 #4 yolulz said: How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/ Click to expand... 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; } Upvote 0 Downvote
yolulz said: How do I make the category's into two columns? Examples: http://www.skial.com/forum/ http://www.facepunch.com/ Click to expand... 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; }
M Matthew Hawley Well-known member Feb 3, 2013 #5 That's not what I want. Only puts the nodes in two columns. Upvote 0 Downvote