I need some help trying to add a background on my profile, here is the code that I use:
body { background-image: url("https://wallpapers.com/images/hd/purple-butterfly-outline-e4zrfvup3z1pd3bs.jpg"); background-size: cover; background-repeat: no-repeat;}
Can someone tell me if this is correct? Because I tried to add it, and it's not showing up.
it looks like you don't have it between style tags. try this:
<style>
body {
background-image: url(https://wallpapers.com/images/hd/purple-butterfly-outline-e4zrfvup3z1pd3bs.jpg);
background-size: cover;
background-repeat: no-repeat;
}
</style>
and see if that works.