Jump to content

CSS z-index problems


pleek

Recommended Posts

I have a page that uses z-index to layer divs to create a wrap around effect with a ribbon. I also have a slideshow that the banner is supposed to be on top of at the top so it looks like the image below (attachment 1). The problem is even if i change the z-index of "banner" to "100000" the slideshow still shows up on top of it. Any help would be appreciated.

 

HTML

<DIV CLASS="main">
<DIV CLASS="banner"></DIV>
<div CLASS="slideshow" id="slideshow">
	<ul id="slides">
		<li><img src="slide1.jpg" width="800" height="312" alt="Sea turtle" /></li>
		<li><img src="slide2.jpg" width="800" height="312" alt="Coral Reef" /></li>
	</ul>
</div>
</DIV>

 

CSS

.banner {
margin:0 auto;
width:900px;
height:130px;
background:url(banner.png) no-repeat top left;
z-index:3;
}
.slideshow {
margin-top:-75px;
width:800px; 
height:312px;
z-index:2;
}

post-55659-13482403159426_thumb.png

Link to comment
Share on other sites

you need to use css positioning. make the main container relative and the baner and slidehow absolute. the z-index should kick in then:

 

.banner {
margin:0 auto;
width:900px;
height:130px;
background:url(banner.png) no-repeat top left;
z-index:3;
        position:absolute;
        top:0px;
        left:0px;
}
.slideshow {
margin-top:-75px;
width:800px; 
height:312px;
z-index:2;
        position:absolute;
        top:0px;
        left:0px;
}

Link to comment
Share on other sites

Ahhh knew it was something simple, now they layer correctly but any controls (links) i add to the slideshow div won't work. I added a link to on of the "li"s and i can't click on it.

 

<li><a href="#"><img src="slide1.jpg" width="800" height="312" alt="Sea turtle" /></a></li>

 

any suggestions? I want each image in the slideshow to be a link to take the user to a new page about that image.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.