WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

1.1K

If I remember correctly - and I'm not saying I do - you used the be able to click the sub title at the top of the side bar (from within the sub) to go back to the main page. Did I hallucinate that or did that function go away?

If I remember correctly - and I'm not saying I do - you used the be able to click the sub title at the top of the side bar (from within the sub) to go back to the main page. Did I hallucinate that or did that function go away?

(post is archived)

[–] 1 pt

It is just like the issue with the 'NEW" button at the top for sorting order that corrected. The sub name on the top right bar is still a link, but it isn't clickable because the "pointer-events" attribute is set to "none" instead of "auto".

This is likely a bug, so may want to mention it in just in case.

As a workaround (in case it isn't a bug), you can use custom CSS via a browser extension like Stylus (not Stylish, that one steals personal info) and you can change it to be "auto" so it can be clicked again. Adding this to your CSS for this site will make it clickable again to return to the main sub page.

div.sidebarlists.head
{
pointer-events: auto;
}

[–] 1 pt

This is likely a bug, so may want to mention it in just in case.

Great idea. I'll link this main post there.