how to hide email section on page?
Author | Topic |
---|---|
reverieve |
Posted 2023-09-16 15:56:38
Hello, I am sadly not very good at CSS yet. How does one hide the e-mail field on their page? Thank you! |
elliot |
Posted 2023-09-18 15:19:54
i’m also slightly curious about this. for that field i currently use an encrypted throw away email that forwards to my real email, the duckduckgo browser makes it easy to do that if you were interested |
jsmith |
Posted 2023-09-22 16:40:02
You can put 'display: none;' in a CSS thingy selecting the 'email' class. You can find the classes if you look at the userpage's source code — that could be useful for further styling, too! (It has been mildly inconvenient to have a mobile browser that doesn't have the 'view a page's source code' feature built in :)) But basically, you can write the following anywhere* in the HTML box in the account settings, and it would have this effect <style> .email { display: none; } </style> Last edited on 2023-09-22 17:22:05 |
reverieve |
Posted 2023-09-24 19:37:24
thank you very much, jsmith! I’m going to go try that! elliot, I’ve actually stumbled upon a tutorial before for forwarding a throwaway email, but I appreciate the offer!! :) |