TIA - Jeff.
> I have a picture that I want to overlay another picture over it. How
> do I do that?
you can stack divs with different z orders, etc. It is best if you
completely use CSS for layout, however.
Peace and Grace,
--
Gregory A. Beamer (MVP)
Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************
[1] http://www.w3schools.com/Css/pr_pos_z-index.asp
"Gregory A. Beamer" <NoSpamM...@comcast.netNoSpamM> wrote in message
news:Xns9CF69E61...@207.46.248.16...
Put 1st picture as a background and show 2nd one over it.
e.g.
<div style="background-image:url(1.png)"><img src="2.png" /></div>
Hope this helps