Response
2 questions !!
- How did u get the floating pic on your profile
- how did u change the mouse? Did you use YouTube tuts? or like, where did u find the coding for this stuff?:
I used css! For my mouse I searched up βsmore cursorβ and I chose the one I rlly liked! Let em know if these donβt work! And how I got them I just asked people
For the floating image:
body::after { content: ''; position: fixed; bottom: 0; right: 0.1rem; width: 12rem; height: 12rem; background: url(link here); background-size: contain; background-repeat: no-repeat; z-index: 1; pointer-events: none; animation: float 4s infinite; }
Cursor mouse thing :
body { cursor: url(link here), auto !important; }
a {
cursor: url(link here), auto !important;
}
Comment
Reactions
Replies
Add a reply
Cat box or file garden! You insert the image and copy the link they provided and paste it into where it says βlink hereβ
How do I put the mouse code thing in?