The avatar list should include 5 items in a row without wrapping:
possible solution:
set
.topic-list .posters {
width: 165px;
}
Potentially:
.topic-list td.posters {
height: -webkit-fill-available;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
-webkit-fill-available
appears to work for Chromium-based browsers, but needs a fall-back for Firefox for the meantime.
Can I work on this one? is this still up for grabs?
@JapneetSingh5, I will handle it today with other forum related issues.
Okay!
Hey @ahmadabdolsaheb , I cannot explain this:
It appears to happen to random lists, but I have found at least 5 in 60 topics.
Most helpful comment
Potentially:
-webkit-fill-available
appears to work for Chromium-based browsers, but needs a fall-back for Firefox for the meantime.