I also can't see the image.. Try attaching it :cheesygr:
So you are wanting to add text inside it?
Maybe you should consider using tables...
With that you just need to create 2 side images and 2 images for the top and bottom.
Then make a table like so:
Code:
<table>
<tr>
<td colspan="3" background="topimg.gif" width="whatever"><img src="topimg.gif" border="0"></td>
</tr>
<tr>
<td background="sideleft.gif"><img src="sideleft.gif" border="0"></td><td>Content goes here<br><br>Breaks...</td><td background="sidright.gif"><img src="sideright.gif" border="0"></td>
</tr>
<tr>
<td colspan="3" background="botimg.gif" width="whatever"><img src="botimg.gif" border="0"></td>
</tr>
</table>
You see it makes a sort of a bot where you can add text in the middle and as much as you want!
That make sense?