Absolute Positioning

Want to anchor an image or an iframe at a certain place on your site?

1 To position an image at a certain place, use this code:
<IMG SRC="URL OF IMAGE" style="position:absolute;top:#px;left:#px;">
2 To position an i-frame, use this:
<iframe name="NAME" src="URL" frameborder="0" allowtransparency="true" width="#" height="#" marginheight="0" marginwidth="0"style="position:absolute;top:#px;left:#px;"></iframe>

Just change the #px to different numbers.