Results 1 to 2 of 2

Thread: IE 7 zindex problem

  1. #1
    supersoniquest Guest

    IE 7 zindex problem

    look at :
    http://politea.sk/tmp/ytie/

    if you open the combobox, the button is still over the open combobox althrought it has a lower z index

    i tried several positions but still dont know whats causing this error, or how to fix that



    thank you

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    In Firefox the WEITER button is covered by the combobox drop down, but in IE7 it's on top like your image in the post.

    I downloaded your files and I've been able to see the drop down combobox in Firefox in my local version and in IE7. However, by adding z-index it worked in Firefox but not in IE7.

    This worked:-
    Move the div.next:-

    Code:
    <div class="r_col">
    						<span 
    
    class="label">Manschettenknopfe</span>
    						<div 
    
    class="div_combobox" style="height: 100px; ">
    							<div 
    
    class="div_combobox_precontent" onclick="openCombobox(this)" 
    
    style="height: 100px">
    								
    
    	<p class="combo">					
    								
    
    		<img src="img/content/tie.jpg" class="left"/>
    								
    
    		<br />
    								
    
    		Manschette 1 
    								
    
    	</p>
    							
    
    </div>
    
    
    <div class="next" >
    						<input 
    
    type="button" value="weiter" class="button" />
    					</div>
    
    	
    							<div 
    
    class="div_combobox_content" style="top: 105px; height: 250px; 
    
    overflow: auto; ">
    
    								
    
    <div class="div_combobox_item" style="height: 100px; 
    
    background-color: violet;" onclick="itemClicked(this)">
    								
    
    	<p class="combo">		
    
    						
    								
    
    		<img src="img/content/tie.jpg" class="left"/>
    								
    
    		<br />
    								
    
    		Manschette 1
    								
    
    	</p>
    								
    
    </div>
    </div>
    							
    							<br 
    
    style="clear:both" />
    						</div>
    
    						
    					</div>
    				<!--<div class="next" ">
    						<input 
    
    type="button" value="weiter" class="button" />
    					</div>  moved up-->
    				</div>
    				<div class="box2"></div>..........
    then edit the style in configurator.css:-

    div.next {
    clear: both;
    left: -250px; top: -50px;
    position: absolute;
    margin-top: 270px;
    margin-left:370px;

    }

    and in ie.css:-

    div.next {left: -250px; top: 150px;
    margin-top: 70px;
    margin-left: 190px;
    }
    Last edited by Wickham; 08 Jan 2009 at 02:39 PM.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. Internet Explorer Page Cannot Be Displayed Problem
    By y2ksrs in forum General Questions
    Replies: 0
    Last Post: 16 Sep 2005, 04:13 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •