<style>
.online{Β
/*hides the text*/
visibility: hidden;Β
}Β
.online img {
/*changes the content of the image*/
content: url("your image here :>");Β
animation-name: none;Β
/*makes sure you can see it :)*/
visibility: visible;Β
/*set the width and height to the dimensions that you want
if you want it to stay to scale, just get rid of either the width
or the height and it will scale it proportionally*/
height: 25px;Β
width: 80px;Β
}
</style>