Subforum-urile pot fi modificate in multe feluri si uneori cautarea sau modificarea template-urilor poate fi un chin.
Va prezint un cod css care va va aranja subforum-urile in 3 coloane.
https://i.servimg.com/u/f27/14/12/03/12/subfor13.png
Panou/Customize/Theme/Edit HTML&CSS/CSS/custom.css si adaugati acest cod.

Cod:


.ipsDataItem_subList{
    width: 100%;
}

.ipsDataItem_subList li{
    display: inline-block;
    float: left;
    width: 40%;
}

.ipsDataItem_subList li a{
  color: #3c3a3a;
    font-weight: 500!important;
}

.ipsDataItem_subList li a:hover{
 color: #272525;
}

.ipsDataItem_subList li a::after{
    display: none;
}

.ipsDataItem_subList li a span{
    display: none;
}

.ipsDataItem_subList li a:before{
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #a29b9b;
    margin-top: 5px;
    margin-right: 2px;
    float: left;
}

.ipsDataItem_subList li.ipsDataItem_unread a:before{
    background: rgb(75,185,69);
}

.ipsDataItem_subList li.ipsDataItem_unread a{
    font-weight: 500;
    margin: 0px;
    color: #549c4d;
    padding: 0px;
    text-shadow: 0px 0px 5px white
}