The Grim Reaper 150 Posted June 28 Share Posted June 28 This tutorial is to change the default display of the subforums from rowlist into column list. Greetings to Split for releasing it. Add the following code into the custom.css and replace "x" with the number of columns you want to be displayed. .ipsSubList li { float: left; width: calc(100% / X - 5px); } @media screen and (max-width: 979px) { .ipsSubList li { width: calc(100% / X - 5px); } } .ipsSubList a { width: max-content; } Simple example for 3 columns style. .ipsSubList li { float: left; width: calc(100% / 3 - 5px); } @media screen and (max-width: 979px) { .ipsSubList li { width: calc(100% / 3 - 5px); } } .ipsSubList a { width: max-content; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.