Code:
<img src="URL OF LAYOUT">
<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">
TEXT CONTENT HERE
</div>
top:??? replace the ???'s with numbers it's adjusts the height of where the box will be positioned. Increase the number to lower the box, decrease to raise it.
left:??? ??? will postion how far left or right the box will lay. Increase the number to move it to the left decrease for the right
height: and width: set the size for the box of course ??? put in numbers
the hard part is playing with all the numbers until it's postitioned and sized to how you want it.
for each different box you want repeat the
Code:
<div style="position:absolute; top:???; left:???; height:???; width:???; overflow:auto">
TEXT CONTENT HERE
</div>
for each one.