How 2 edit ur profile

https://www.youtube.com/watch?v=iIcDGa6y3zU

This vid is the best and covers a lot of stuff :))

This is where I got my cursor, but keep in mind that the pixels of the cursor has to be at the very edge of the photo you're using or there will be phantom space and the edge of the image won't be the tip of your cursor :p

To code, put the code in your description box. 

Here's some code::
I'll paste some code here with the Strikeout feature being used to indicate which parts you gotta customize with your own info

Start and end the code with 
< style >
but get rid of the two spaces I put there
It should only be there twice in your code. after the second and final "style", you can write your description

Follow the vid for info on how to change fonts because it's long and kinda complicated

For the cursor put 
{
cursor: url(__paste the url here without the lines__.[gif or png, put whichever you're using. gif works for non-gifs, but png doesn't work for gifs]), url(__put the same code again here with the . and everything__), auto !important;
}

For background images put
body{
background: url(put url here; this image will appear behind your text directly so if you pick something that clashes it'll be hard to read what you wrote.jpg);
}

.profile{
background: url(put url here; this image will be the background background, like the parts on both sides surrounding your page info.jpg)
}

for the little image in the box on top of your page/above you're pfp, put 
main:before {
width: 100%;
height: 250px;
display: block;
content: "";
box-shadow: 0px 0px 5px 1px #here put the hex code of what color you want the little highlight around it to be;
background-color: color of ur choosing;
background-image: url('image or gif of your choosing.png or gif');
background-position: center center;
background-size: cover;
}
media only screen and (max-width: 600px) {
main:before{
height: 250px;
}
}


1 Kudos

Comments

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