XF 1.5 Order Staff Online Now from Left to Right Rather than from Top to Bottom

Amaury

Well-known member
I'm working on making our new 2016 styles (dark and light) a bit unique compared to our previous styles, and I was wondering how easy it would be to order the Staff Online Now from left to right rather than the default top to bottom?

Staff Online Now.webp

If it's easy, what do I need to do? Thanks.
 
I've managed to get this figured out. For reference:

Code:
.section.staffOnline.avatarList {
    overflow: hidden;
}
.sidebar .avatarList li {
    float: left;
}

.staffOnline .secondaryContent {
    overflow: hidden;
}

Thanks to @Steve F.
 
Top Bottom