i'm trying to make a pet profile with this layout: http://img401.imageshack.us/img401/9446/alice.png
but the right side looks to bear. so i was trying to layer another background under it: http://www.webweaver.nu/clipart/img/web/backgrounds/floral/floral-design.jpg
but i'm not sure how to do it. ideas? help?
[tot=kita]
You can't.. unless the top image is transparent you'll need to go back and edit the first image with that background.
Unless you mean
<style>
body {background-image: url(First image url); background-repeat: no-repeat; height:100%; width: 100%;}
html{background-image: url(Second image);background-repeat: repeat;}
</style>
For the far right side.

that's what i'm using, except its not working?
[tot=kita]
personally (to tell the truth) i like it without the added background. i think it is nice with the white.
the above code should work but here is a little variation to it (the code i use)
html {background-color:transparent; background-image: url(REPEATING BACKGROUND CODE); repeat;}body {background-color: transparent; background-image: url(NON REPEATING BACKGROUND URL); background-position: top left; background-repeat: no-repeat; height:##; width:##;}
it will look funny though since your background is white and the repeating one is a different color.... sorry.