You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Overlay isnt working correctly in IE7 Created Nov 7, 2009

This thread is solved

Views: 1306     Replies: 3     Last reply Jan 14, 2010  
You must login first before you can use this feature

oracle

Posts: 2

Registered:
Nov 7, 2009

Overlay isnt working correctly in IE7

Posted: Nov 7, 2009

Hi Everyone -

I have a weird issue with tools overlay. Tools overlay with apple effect works perfectly fine on FF but the overlay isnt working correctly in IE7

In my case, I have an overlay with form input elements with a background image. The overlay pops up when clicked on a hyperlink.

Here is the code

For the hyperlink


<a style="font-size:11px;" id="showStatus" href="#" rel="#updateStatus">(Update Status?)</a>

In my jsp code, the overlay initialized this way



<script type="text/javascript">
  $(document).ready(function(){
     $("#showStatus").overlay({expose:'#000',   effect:'apple', onBeforeLoad:function(){launchStatus();}});
</script>


The overlay that should show up has a form element in it



<div style="width:550px;height:360px;" id="updatePersonalStatus" class="overlay" >
  <textarea class="posted_item_small_textarea" id="personalStatus" name="personalStatus"></textarea>
</div>


My CSS looks like this


/* the overlayed element */
div.overlay {
    
    /* growing background image */
    background:url(./images/overlay.png);
    
    opacity:0.6;

    /* dimensions after the growing animation finishes  */
    width:550px;
    height:360px;       

    /* initially overlay is hidden */
    display:none;
    
    /* some padding to layout nested elements nicely  */
    padding-top:15px;
    padding-left:15px;

    /*color:#fff;*/
}


When the overlay shows up, all I see is the background image and my form elements dont show up.

Has anyone seen this issue before? If so, what is the resolution

Thanks much!

oracle

Posts: 2

Registered:
Nov 7, 2009

Can someone help please?

Posted: Nov 10, 2009

Reply to: Overlay isnt working correctly in IE7, from oracle
Can someone help please. I'm pretty sure someone has solved this on IE.

Thanks!

tshelburn

Posts: 3

Registered:
Jan 14, 2010

Overlay doesn"t work in IE7

Posted: Jan 14, 2010

Reply to: Can someone help please?, from oracle
I am having the same issue. Works everywhere, but IE7.

tshelburn

Posts: 3

Registered:
Jan 14, 2010

Fixed on my end

Posted: Jan 14, 2010

Reply to: Overlay isnt working correctly in IE7, from oracle
My container was set to "position:relative". Removed that and bingo!