« Web, HTML, Tech Forum

how do i change the online icon beside the profile picture in my layout? or how do i add images beside the online info?

Posted by Cervidae

posted

Forum: Web, HTML, Tech

hi all! trying to customize my layout more. is this possible?


Report Topic

3 Replies

Sort Replies:

Reply by canto

posted

This should get you started:


.online {
visibility: hidden;
font-size: 0;
}
.online::after {
content: url('https://static.spacehey.net/icons2/tick_light_blue.png') "ONLINE!" !important;
visibility: visible !important;
font-size: initial !important;
}

One important thing to note is that spacehey enforces what is known as a 'Content Security Policy' (CSP) that prevents external images from being hotloaded from a location off-site. This means that hosting images from sites like imgur and using them in the url field in my code will not work. You will have to upload them to spacehey and use them from there, or use an existing spacehey image. You can change the text all you want, though. I'm not sure if it's possible to style the image created via the content tag.


Report Reply

Reply by ⚔︎LΩ∇ΣRβΩΨ⚔︎

posted
updated

<style>

.online{content:url("IMAGE URL");}

</style>


That's how I did mine!


Report Reply

Reply by ⚔︎LΩ∇ΣRβΩΨ⚔︎

posted

<style>

.online{content:url("IMAGE URL");}

</style>



That's how I did mine!


Report Reply