Cory's profile picture

Published by

published
updated

Category: Art and Photography

🖥 CSS Snippet: Adjust the Supporter Tag

If you're a supporter of SpaceHey, that's amazing and you are awesome! But you know, gotta get the profile to flow, so let's get some snippets.


Remember: always put any CSS in between two Style tags: <style></style> That way, browsers will recognize that what you're trying to do is adjust the style. Also remember that CSS stands for Cascading Style Sheets, so the browser will activate styles from top to bottom!

To change the rosette icon to something else, like an emoji:
.supporter img{font-size:0;} .supporter:before{content:"🌈"!important;}

To change the Supporter text to a different color:
.supporter a {color:#FF00FF!important;}
Make sure you put !important after the hex code you choose so that the browser knows to overwrite any other colors in the system.

As always, if you need any help, feel free to hit me up on Discord at pacdude#2679 and if I'm near a computer I'll try to help out with code!


5 Kudos