his worked, yours made actual forums not clickable xDGumboots wrote: Sat Apr 12, 2025 7:50 pmToo complicated. Just use this:cabot wrote: Sat Apr 12, 2025 4:08 pmRelative positioning is used here to move the topic icon above the background of the read/unread icon (wich is positioned in absolute).
This is not immediately obvious because the background of the read state uses transparency, which is not the case for the unread state.
To fix this, the inaccessible elements also need to be positioned in relative:Code: Select all
dd.lastpost > span > :not(dfn) { position: relative; }
Works the same. Less stuff. Less stuff is good.Code: Select all
.lastpost { position: relative; }
Although, TBH, the best fix is to ditch the default Prosilver CSS and just flex the lot. That's what I did years ago, when I first took a look at the default code, thought "No effing way", and promptly threw it all in the bin. Never looked back. It makes responsive and RTL a hell of a lot easier too.