You HAVE to include the table style and coordinates.
That is the piece that requires modification. The numbers represent the place they appear on the wallpaper. E.g.:
table style="position: absolute; <-- Absolute indicates it's in a fixed location.
top: -167px;
<-- -167 pixels from the top. Note they've used a negative number.
left: 72px;
<-- 72 pixels in from the left
width: 320px; <-- 320 pixels wide (the width of the wallpaper)
height: 461px;" <-- 461 pixels tall
cellspacing=""
cellpadding=""
align="center"
The two style elements you need to change are
top and
left. Play around with the numbers until you get it positioned where you want the object to appear. If you're wanting it to appear on the right side, increase the value of "left" to something like 248.
If you're not comfortable with CSS and styles, I highly recommend checking out this tutorial first:
CSS Tutorial