How do I put a fixed background behind my profile? I also want it to fit exactly with my profile so that the image doesn't repeat itself. Hope that made sense. Also, where would I need to put the code? Thanks for your help :)
All profile codes go here, just make sure you have the Profile section up first, or else they won't work. :)
<style>
body {
background: url(URLHERE) top left no-repeat fixed;
}
</style>
Thanks for your help, but it doesn't work. The image is there but it's right at the top of the page. It's so far up that only about a cm of the bottom of the picture is visible. Is there something I'm doing wrong?
Nothing you are doing wrong, I just wasn't clear on what you wanted to do. :)
<style>
body {
background: url(URLHERE) 50px 50px no-repeat fixed;
}
</style>
You'll have to change the numbers there depending on where you want the background to be. Just don't forget that people with different resolutions might see it differently. The first value is the number of pixels from the top of the screen; the second is the number of pixels from the left side of the screen. 100px is about an inch. :)
It still doesn't work. I feel like such a pain. Thanks for all your help though :)