how do you put the little pictures in the corner of the screen away from the rest of the profile

hlep


0 Kudos

Comments

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

📺VOX💙

📺VOX💙's profile picture

also how do you do the thing where when you click on someones profile it plays a little gif and then you actually see their profile


Report Comment



ok so idk how to put the images in the corner ^^|| BUT to get the loading screen u put thiscode, and use an image link (make sure the image link ends w .png .jpeg or .gif)



body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-image: url('imagelinkhere');
background-size: cover;
background-repeat: no-repeat;
background-position:center;
animation: yourAnimation 1s ease 0s 1 normal forwards;
pointer-events: none;}
@keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }


there u go :-D

by val !!; ; Report

u put that in ur about me and it should work

by val !!; ; Report

smh i forgot but start the code w and end it with

by val !!; ; Report

WHY CANT I ADD THE STYLE THING

by val !!; ; Report

start the code with < style > (without the spaces) and end it with < / style > (again without the spaces

by val !!; ; Report