putting a comment box in something

In a simillar way to how I suggested you set the back ground image, you put the image in a layer and then set that layer at a lower z-index level to the other parts of the document.
Code:
<style>
.messageb-picture {
position: absolute;
z-index: -1;
}

</style>
<div class="messageb-picture"><img src="http://i80.photobucket.com/albums/j175/King222/messageboard.gif" 

class="messageb-picture"></div>

<form action=comment.php method=post>
<br /><br />
     <textarea name="message" rows="10" cols="30">Text here</textarea>
</form>
 
Back
Top Bottom