RE: over lapping a picture on a website
use CSS.
Example (in-line CSS):
<div style="position:absolute; top:0px; left:0px; width:100%; z-index:10;">
something goes in here</div>
To overlap multiples layer, simply change the z-index, while to move your contents in your div, simply change the pixel value for top(bottom) and left(right).
Edit: you can add width and/or height or other attributes for the inline CSS.
This post was edited on 04-24-2008 at 01:10 AM by xJ +.
|