How to put WSF 5.1 sub-categories into columns?

  • How can I have the sub-categories in my forum show in three columns? I had this CSS code for WBB 4.1 but it doesn't work with WSF 5.1.


    Code
    @media only screen and (min-width: 910px) {
        .wbbBoardList .wbbSubBoards {
           overflow: hidden;
        }
        .wbbBoardList .wbbSubBoards li {
           width: 33%;
           float: left;
           display: block;
        }
       }
  • Try this:


    Code
    @media only screen and (min-width: 910px) {
    
        .wbbBoardList .wbbSubBoards > li {
           width: 33%;
           margin-left: 0;
        }
       }

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!