bunnie's profile picture

Published by

published

Category: SpaceHey

!!coding hack for the clueless!! //resources

Have you struggled with your SpaceHey Profile in the past few weeks?

Does CSS and HTML make you wanna cry??

Are you clueless about how to **customize** your account?!

。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑

Well I have a hack for you. 

We've forgotten what separates us from the beginnings of the internet. What provides us with more coding knowledge than y2k mall goth myspace queens could ever dream of having...

ChatGPT.

Simply go to ChatGPT's open ai chat and ask *any coding question.* It can easily provide the how, why, troubleshoot, and provide copy/paste CSS and HTML coding for anywhere on SpaceHey. 

Totally forgot about this very epic resource, and I don't see it talked about on here enough. 



here's some floating image code (floaties) it gave me for profiles-- worked amazing for me after struggling all day with other tutorials. 

。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑。.。༅:*・゚゚・⭑

<!-- Add this code to display the floating image -- insert between <style> </style> tags!! --!>



<img src="IMAGE_URL" class="floating-image"/>

<style>
/* Make the image container position relative */
.image-container {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Position the image in the top right corner */
.image-container img {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Add a subtle animation */
.image-container img:hover {
  transform: scale(1.1);
}




12 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Bunnie ʚ♡ɞ

Bunnie ʚ♡ɞ's profile picture

THIS IS SO USEFUL!!! ty for posting about this, i've never even heard of it before :3 i love coding but figuring out how to do something i havent before can be so hard so this is AWESOME tysm <3


Report Comment



Ofc!!! This is pretty early in my own coding journey so please lmk if anything doesn't work for you ^-^ I super reccomend checking out the "HTML Group" under the "Groups" section on here, there's a large masterlist of code and it's pretty easy to learn from. Best of luck to you ^-^

by bunnie; ; Report