up vote 1 down vote favorite
1
share [g+] share [fb]

I want one image above the other. How can I do it?

example http://twitpic.com/2cnpku

link|improve this question
Welcome at Stackoverflow! You don't need to whine for help. I've edited it away because helpful users would otherwise move along. Just ask the question the smart way. You're already at the right place to get help :) – BalusC Aug 8 '10 at 2:58
Please copy and paste the relevants parts of code into your question. It will make it easier for people to help you and also future users to see your problem. – charlie hwang Aug 8 '10 at 2:58
feedback

2 Answers

up vote 1 down vote accepted

Set the image you want on top to have a higher z-index. Right now, it has a lower z-index.

link|improve this answer
the problem is the images are not showing but everything is right name and address – SDK_User Aug 8 '10 at 3:05
feedback

from the code you posted, it appears you are passing an img element into another the src attribute of another img element. Is there a reason you are doing this?

<style type="text/css">
  .imgA1 {position:absolute;
          top:0px;
          left:0px;
          z-index:2;
          width:1300px;
          height:283px;}
  .imgB1 {position:absolute;
          top:0px;
          left:0px;
          z-index:1;
          width:1300px;
          height:1000px;}
</style>
<img class="imgA1" src="images/home_nav.png" alt="home_nav" />
<img class="imgB1" src="images/paperbackground.png" alt="Background" />

A similar code mockup can be seen at http://jsfiddle.net/gBPBd/3/ with my images to prove the concept and it is funcitoning in chrome, ie8.

link|improve this answer
Thanks Gabriel But The Home Nav image is still behind the paper background image. @Gabriel – SDK_User Aug 8 '10 at 3:22
<style type="text/css"> // if imgA1 is intended to be on top set a higher z-index .imgA1 {position:absolute; top:0px; left:0px; z-index:3; width:1300px, height:283px;} .imgB1 {position:absolute; top:0px; left:0px; z-index:1; width:1300px, height:1000px;} </style> ---------------------------------- .imga1 is staying behind?? – SDK_User Aug 8 '10 at 3:54
I worked on it a bit more, looks like my comment was breaking the selector. I have modified it. You can also see it working here jsfiddle.net/gBPBd/3 though I have used my own images so you can see the result. – Gabriel Aug 8 '10 at 3:56
Working Now Thanks Everybody! – SDK_User Aug 8 '10 at 3:58
please mark as answer. – Gabriel Aug 8 '10 at 3:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.