Have been doing some work on the mobile version of the categories page. @Burnwinter I wonder do you know much about css? I've been able to tweak a good few of the things I want but one thing I am struggling with is moving the timestamp text on the mobile last post to sit underneath the name of the last post thread name.
The classes containing the two elements are LastDiscussion-topRow and LastDiscussion-bottomRow. bottomrow contains the timestamp and the below css:
.LastDiscussion-bottomRow {
display: flex;
}
Oddly however, in the html, the bottomrow div actually appears first:
<div class="LastDiscussion-bottomRow">...</div>
<div class="LastDiscussion-topRow">...</div>
So if I change the display: setting to say, block, I get the desired appearance of the two elements stacked vertically rather than side-by-side, but it is the timestamp that appears on top as per the html, rather than the thread title. Other than going into the code of the extension, I am struggling to work out how to do this.