I hope I'm posting this in the right place. ^^; I have no idea what I'm doing when it comes to coding. I've basically got my pet's profile how I want it, except for the content placement.
Spooky I want the pet, minion, description and treasure to all stay in that white box when I scroll up or down with the sidebar, but all of it scrolls up and up and up, and no matter what I do there's a sideways scrollbar at the bottom of the treasure chest for some reason? With a lot of extra white space to the right side.
you'll want to set the body background attachment to 'scroll' instead of 'fixed'. however, the way the background image is currently set up, it won't align properly when you scroll because the white section stops at the bottom of the image, and then there's a gap at the top where the image repeats.
i'd suggest making a second background image, one that repeats vertically and lines up with the bottom of the main background image. set the first image to no-repeat, and set the second image to repeat-y. so what you would do is this:
body {
background-image: url(FIRST IMAGE URL), url(SECOND IMAGE URL);
background-repeat: no-repeat, repeat-y;
background-attachment: scroll, scroll}
as for the horizontal scrolling issue, it looks like is 557px wide, but the div it's in, , is only 430px wide. set overflow-x on to 'hidden'.