. If there is feature lika that then I sincerely apologize and I swear I can't find it. All I see is just show all comments which just blur a little down voted comments
Posted under Site Bug Reports & Feature Requests
. If there is feature lika that then I sincerely apologize and I swear I can't find it. All I see is just show all comments which just blur a little down voted comments
xarase-god said:
. If there is feature lika that then I sincerely apologize and I swear I can't find it. All I see is just show all comments which just blur a little down voted comments
on mobile, directly above the comments, there are two anchor links: Image and Tags/Info. the first will scroll you to the image (before the description) and the other will scroll you down to the tag list (after the comments).
There's also an option somewhere in your settings that hides all comments too
since I was bored (and I had been meaning to get around to doing it anyway), here's some CSS you can paste into the box in your user settings that will make the buttons more distinct and will make them remain onscreen as you scroll through the comments:
/*rework mobile-only page anchor links' appearance, make them sticky*/ .mobile-only { margin-left: 2px; width: fit-content; background-color: var(--color-section); border:2px solid var(--color-section-lighten-5); border-radius: 4px; position:sticky; top: 3rem; z-index: 1; } a[href^="#image-and-nav"]::before, .mobile-only li:nth-child(2) a[href="#comments"]::after { content: "↑"; } a[href="#tag-list"]::after { content: "↓"; } .mobile-only li:nth-child(2)::before { content: "|"; margin-right: .8em; color: var(--color-text-muted); } /*hide anchor links when they're unnecessary*/ .mobile-only:has(~ menu#post-sections li.active #post-edit-link), menu#post-sections:has(li.active #post-edit-link) ~ .mobile-only, .mobile-only:has(~ section#comments div.list-of-comments > p) li:nth-child(2), section#comments:has(div.list-of-comments > p) ~ .mobile-only { display: none; }
Updated