Sub Forum mod...

That's vBulletin, but this modification is similar:

http://xenforo.com/community/threads/how-do-i-show-my-page-into-two-columns.29247/

In addition you will want to setup custom status icons for each forum:

http://xenforo.com/community/resources/add-an-image-to-node-titles-on-the-forum-home-page.425/

Or:

http://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/

But in 1.1 you must also set the background-position unless you are using sprites that mirror the default node icons. Here is the code from that thread with the background-position added:

Rich (BB code):
/* custom status icons */
.node .node_7 .forumNodeInfo .nodeIcon, .node .node_7 .categoryForumNodeInfo .nodeIcon {
    background-image: url("@imagePath/xenforo/widgets/forum-read-7.png");
    background-position: 0px 0px;
}
.node .node_7 .forumNodeInfo.unread .nodeIcon, .node .node_7 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("@imagePath/xenforo/widgets/forum-unread-7.png");
    background-position: 0px 0px;
}

You may also be interested in this addon:

http://xenforo.com/community/resources/sub-nodes-in-columns.580/
 
You always do know the answer Jake =) That code though is for all nodes, what if I only want certain nodes. Like that example I gave, rest the forums are single, only NHL teams are double
 
Top Bottom