Hello,anyone know how to make my forum to show the subforums in 3 columns. I tried some tut on net but no success till now.
I have experience with earlier version of IPB (2.3x) . let me know if I can check the tutorial and your code changes (temporary admin panel access required)
Unfortunately i can`t give you acces to the admin pannel but the tut is this go to: AdminCP>Look&Feel>(choose skin)> ipb_styles.css add to the last line of CSS: table.ipb_table ol.subforums1 {margin-top:3px;float: left;width:33%;}table.ipb_table ol.subforums1 li{background: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_nonew.png')no-repeat 050%;padding:015px015px;margin:0;float: left;}table.ipb_table .subforums1 li.unread { font-weight: bold; background-image: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_new.png');}table.ipb_table ol.subforums2 {width:33%;overflow: hidden;}table.ipb_table ol.subforums2 li {background: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_nonew.png')no-repeat 050%;padding:015px015px;margin:0;float: left;}table.ipb_table .subforums2 li.unread { font-weight: bold; background-image: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_new.png');}table.ipb_table ol.subforums3 {width:33%;overflow: hidden;}table.ipb_table ol.subforums3 li {background: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_nonew.png')no-repeat 050%;padding:015px015px;margin:0;float: left;}table.ipb_table .subforums3 li.unread { font-weight: bold; background-image: url('http://www.mkzscc.com/forum/public/style_images/marble/subforum_new.png');} then Save go to: AdminCP > Look & Feel > (choose skin) > Board Index > boardIndexTemplate find: <ol class='ipsList_inline ipsType_small subforums' id='subforums_{$forum_data['id']}'> <foreach loop="subforums:$forum_data['subforums'] as $__id => $__data"> <if test="showSubForumsLit:|:$__data[3]"><li class='unread'><else /><li></if> <a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{$this->lang->words['go_to_forum']}'>{$__data[1]}</a> </li> </foreach> </ol>replace with: <ol class='ipsList_inline ipsType_small subforums2' id='subforums_{$forum_data['id']}'><foreach loop="subforums:$forum_data['subforums'] as $__id => $__data"></ol> <ol class='ipsList_inline ipsType_small subforums3' id='subforums_{$forum_data['id']}'><if test="showSubForumsLit:|:$__data[3]"><li class='unread'><else /><li></if></foreach></ol> <ol class='ipsList_inline ipsType_small subforums' id='subforums_{$forum_data['id']}'><foreach loop="subforums:$forum_data['subforums'] as $__id => $__data"></ol> <ol class='ipsList_inline ipsType_small subforums1' id='subforums_{$forum_data['id']}'><if test="showSubForumsLit:|:$__data[3]"><li class='unread'><else /><li></if><a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{$this->lang->words['go_to_forum']}'>{$__data[1]}</a></li></foreach></ol>