z-index

JQuery Cycle Plugin and CSS Sprite - no hover registered with Opera

Using JQuery Cycle plugin to create a rotating background. Also using Blueprint for CSS The images are within an absolutely positioned DIV z-index:1. Another absolutely positioned DIV is placed right on top of this one with z-index:999. Within the top DIV is a CSS Sprite Menu. The sprite menu works with every browser I've tested, FF3...

css3 drop shadow under another div, z-index not working

i'm trying to use a drop shadow to make it look like one div (the header) is "above" another. my problem is that the "middle" div is covering the drop shadow. i tried using z-index to put the header div about the middle div, but it's not working (the shadow is still being covered). when i put a break between the divs, i can see the shado...

I need help with getting these div dimensions to be uniform across browsers

I am working on a website located here: http://www.freshhealthybistro.com/temp/ I used a 960 grid, and the css for the 960 was taken from the website: (google 960 gs because I can only post one hyperlink) I realize that maybe I should have just avoided using the 960, but anyway... I did use it and unfortunately my website isn't uniform...

WebKit CSS3, z-index is not respected

When using a CSS3 transform, my z-index's are suddenly ignored. Link: http://joelongstreet.com/css_perspective/ The only browser I'm worried about testing in is the iPad. The animation is triggered by a click event. Shouldn't the div#arrow always sit on top, regardless of what the div#main_event is doing? Thanks for any help you can pr...

Handling Scroll bars with jQuery event Drag and Drop

I have a room div with some toy divs arranged on it, see Toys are absolutly positioned and are drag-able with in the walls of the room . The room container div has a fixed height and height, so the room has horizontal as well as vertical scrolls. I use jquery event drag plug-in for setting up DnD. I managed to set up the toys drag only...

Element inside DIV positioned beneath it

I accidentally deleted my question about this. I have the following HTML: <div id="frame"> <img src="sample.png" alt="" /> </div> CSS: #frame { position: relative; z-index: 2; } #frame img { position: relative; z-index: 1; } What I'm trying to do, is get the image's parent DIV to be positioned on top (it's a frame). It seems t...

Z-Index in Internet Explorer

I am trying to get the z-index to work in my html code. I have looked this up at several places, and it says that I need to add a position to my my div. Which I already have done and it still isn't working. Below is the css and the html that I used for the z-index. Any help that you would like to give would be greatly appreciated. CSS:...

complex DIV overlapping and visibility with CSS

I'm looking to have an image object that looks like it's "pinned" to the side of my fixed-width page. but it seems to be contradictory - in order to style it, the div with the image has to be in a separate div than the main content, but in order for it to work in the layout, the div with the image can't be a separate div from the main co...

Z-index not overlaying over divs further down in the DOM

I'm attempting to create a tooltip-like system where a mouseenter event causes a div to show up which will overlay content. Unfortunately the issue I've run into is that content later in the DOM is not disappearing in IE7, while content earlier is disappearing correctly behind the z-indexed element. Here is some sample code which illust...

how to overlap a image on a div?

I want to place a small circular login image on the border of div such that half image will be outside the border line just for style purpose?I think I have to set z-index but how OR is there any better way? ...

Javascript Drop Down Menu over Image Rotator

Designer here, trying to code. I am almost there! Trying to get a drop down menu from dynamic drive to work over an jQuery image rotator. Played with z-index. I can get the menu to work over the image rotation on all browsers except in IE compatibility mode, cannot click on the buttons in the rotator. http://local495.bigrigmedia.com/ ...

Using Z-index, margin not working to push div away from another

I have edited this post with my question writen in a more simple way to understand. Please see below. Some CSS I am using: #wing_right { background-image:url("../images/poppadom.png"); height:678px; margin-right:-60px; margin-left: 500px; position:fixed; right:0; top:240px; width:387px; z-index:50; } Easier ver...

jQuery-ui autocomplete IE6 z-index problem

Hello all I am implementing jQuery-ui autocomplete function in my website. In IE6, the autocomplete box appears below other html elements select, input etc. These elements overlap the autocomplete suggestions box. In IE7, 8, it works fine. I tried changing the z-index of parent div. I changed the z-index of parent div of input, to whic...

jQuery z-index doesn't work

Hi, i have a menu and on hover i fade a box in. Behind this box i have a small icon and i want to move it in front of the box so you can see it on hover. Here is my menu > Navigation I tried it with that jQuery(this).find(".flyer").css("z-index", 10000); but it stays behind. How could i manage that problem? greets Max ...

What is causing these browser rendering issues? Z-index conflicts? Positioning rules?

I'm developing a product to be used by a number of customers alongside our Web application. Quick background: These customers have incorporated into their pages a widget that we've developed. The widget's content can be modified by using our application. The idea behind this product is a bookmarklet that we supply, which will "highlig...

IE7 CSS Z-Index issue in quirks mode

I've been trying to figure this out for over a day now, so any help would be appreciated. I have a Suckerfish menu that's made up of ul/li's. I'm trying to add some top down scroll indicators to my menu. In my example I have a blue and green indicator which are just placed inside the menu for now. These indicators are just another LI ins...

How do I assign an incremental z-index # for each H2 using Jquery.

Using Jquery, How do I assign an incremental z-index # for each H2, incrementing by 2's? (when document is ready, start with the first H2 and give it a z-index of 2, then go to the next H2 and give it a z-index of 4.... etc. z-index of the next H2 is 6 etc. example: <H2 style="z-index: 2;">heading one</h2> <H2 style="z-index: 4;">headi...

iPhone youtube video z-index

I have an embedded youtube video in a page. I also have a menu (when opened) is on top of that video. I have set the z-index value of the menu to higher than that of the video. I have also set the wmode of the video to transparent to allow for content on top of it. I am experiencing no issues at all in safari, ie, chrome, or firefox on...

Wpf Bring to Front

I have a ItemsControl which uses a Canvas as as as the ItemsPanel. The itemsTemplate hosts a Custom Control. When the control is clicked I would like it to "move to the front". I know I can do this with the ZIndex in my control like so: private void MyControl_PreviewMouseDown(object sender, MouseButtonEventArgs e) { if(((FrameworkE...

Allowing item selection indicator in ListBox to overlay all items in Silverlight

I have a ListBox that uses a WrapPanel for its ItemsPanel, a custom ItemTemplate, and a custom ItemContainerStyle. The ItemContainerStyle's template contains a selection box that shows up when an item is selected. The graphics designer would like this selection box to overlap sibling items in the ListBox like it's an overlay. The firs...