Hi!! I'm new to profile coding, which basically means the only thing I know how to do is which colours to change (:'
I recently decided to take a tiny tiny step out of my comfort zone, and edited the beginning of the free profile by FallenSamurai to say:
code
/
/ Font Color and Background Color*/
body {
color: !important;
background-color: ;
background-image:url(https://imgur.com/gybArnT.png);
}
/* Link Color /
a:link, a:visited, a:hover {
color: !important;
}
/
(edited part in red, I know, it's tiny) The thing is, this only makes the background have one strip of the image I entered. So my question is, how do I repeat that image for the entire background?
Thanks so much in advance!!
[edit] Sorry, another small question: what is the code used to link to like someone's HA?
you could try the following inside the body tag
background-repeat: repeat;
| | | |
Hey there. I see that Mourning has given a solution. However, I'd like to provide a different option if you want to use an image that doesn't repeat well, and that doesn't need to have the full thing visible to work right.
background-size: cover;
What this does is scales the image up so that it'll cover the entire space, no matter what size it needs to go to. So if you have a non-repeating gradient, or a scene that you don't mind having parts cut off on, this is actually a better option.
As for the human avatar thing, I'm not 100% sure what you're asking, but I'm pretty sure you can mix the avatar tag with the url tag.
[avatar=Spiritburn][avatar=blueshark]
These are literally:
[avatar=Spiritburn][avatar=blueshark]
thank you both so much!! I'll try to see if they work! :D