April 24, 2018 at 10:46 PM #1 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; } }
April 29, 2018 at 11:20 AM #2 Try this: Code @media only screen and (min-width: 910px) { .wbbBoardList .wbbSubBoards > li { width: 33%; margin-left: 0; } }