what's the code to move the online now and other info below the profile pic instead of next to it? also, how do you change the image for the online now icon? thanks!!
what's the code to move the online now and other info below the profile pic instead of next to it? also, how do you change the image for the online now icon? thanks!!

I don't remember
@Ziggly McSnorp (MUSIC) thanks ziggly

Try this and see if it works. Paste this style block in the black box for html/css
Change the yellow link to an img url that you want
<style>
/* Stack the profile picture, info, and online icon vertically */
.general-about {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
text-align: center !important;
}
.general-about .profile-pic {
order: 1 !important;
float: none !important;
}
.general-about .details {
order: 2 !important;
width: 100% !important;
}
.general-about .online {
order: 3 !important;
visibility: hidden !important;
}
/* Change the online icon */
.general-about .online img {
content: url("YOUR-IMAGE-URL-HERE") !important;
visibility: visible !important;
display: block !important;
width: 70px !important;
height: auto !important;
margin: 6px auto !important;
}
</style>
@Kayla⟡ thank you sm!!!

@steph stabwound (|\\\|) you're welcome!!
You must be logged in to reply.