Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
wiki:documentation [2025/08/11 22:38] – [Avatars] scumsuck | wiki:documentation [2025/08/11 22:50] (current) – [Discussion] scumsuck | ||
---|---|---|---|
Line 62: | Line 62: | ||
==== Discussion ==== | ==== Discussion ==== | ||
- | The [[https:// | + | The [[https:// |
+ | |||
+ | The default input fields are | ||
- Real Name | - Real Name | ||
- Website | - Website | ||
- Comment | - Comment | ||
- | Those fields are hard-coded, | + | Those fields are hard-coded, |
+ | |||
+ | This code hides "Real Name" and makes it so screen readers don't read it. | ||
+ | |||
+ | < | ||
+ | .comment_name .block span { | ||
+ | font-size: 0; | ||
+ | visibility: hidden; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This code replaces the text with " | ||
+ | |||
+ | < | ||
+ | .comment_name .block span::after { | ||
+ | content: ' | ||
+ | font-size: 18px; | ||
+ | visibility: visible; | ||
+ | } | ||
+ | </ | ||
Supposedly entering your e-mail allows you to get notifications for comments, but I haven' | Supposedly entering your e-mail allows you to get notifications for comments, but I haven' |