M Mr. Magic Jan 4, 2010 #1 I have a picture that I want to overlay another picture over it. How do I do that? TIA - Jeff.
G Gregory A. Beamer Jan 4, 2010 #2 I have a picture that I want to overlay another picture over it. How do I do that? Click to expand... 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! | *******************************************
I have a picture that I want to overlay another picture over it. How do I do that? Click to expand... 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! | *******************************************
H Hillbilly Jan 5, 2010 #3 Research absolute positioning [1] which as I recall is a requirement to use a z-index attribute value which is used to identity wich bit plane or "layer" each image will be displayed on. [1] http://www.w3schools.com/Css/pr_pos_z-index.asp
Research absolute positioning [1] which as I recall is a requirement to use a z-index attribute value which is used to identity wich bit plane or "layer" each image will be displayed on. [1] http://www.w3schools.com/Css/pr_pos_z-index.asp
A Alexey Smirnov Jan 5, 2010 #4 I have a picture that I want to overlay another picture over it. How do Ido that? TIA - Jeff. Click to expand... 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
I have a picture that I want to overlay another picture over it. How do Ido that? TIA - Jeff. Click to expand... 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