Trying to modify this pet profile: HERE
code
I want to put the image that's in the description on the right side of the box and I want to put the treasure over the description, but I can't work it out.
so for the image alignment you would do this:

and to put the treasure above the description, you would simply change the top position values for each:
{position:absolute; top:450px}
{position:absolute; top:650px}
you might have to fiddle with those values to get them exactly where you want, and if the treasure chest gets longer (i.e. you add more items) you will have to move the description lower (so, increase the top position value).
Thank you so much for the help! I didn't express myself clearly. I meant, how do I put the image outside the box on the right hand side (or left) of the profile?
ah, to do that you would need to create a new div, let's say you'll call it something simple like 'picture'. so inside the style tags you would put this:
{position:absolute; top:XXpx; left:XXpx; height:XXpx; width:XXpx; background:url(IMAGE URL) no-repeat}
you'll have to play with the top and left position values until it's where you want it, and make sure the height and width values are exactly the same as they are on the linked image. then outside the style tags, put this:
and it should show up :)