[css-d] missing image in IE6, and a menu stacking issue

2009-01-07 Thread Debbie Campbell
My absolutely-positioned #challengeBtn link is missing in IE6 but 
present in other browsers (the big blue 'Create a Group' button on the 
orange bar):

 http://www.redkitecreative.com/projects/endorphin/

I thought it might be a hasLayout issue and applied zoom: 1; to the 
parent element but that didn't help. Any suggestions?

Also, the submenus for the navigation bar are sliding under the content 
in IE6/7. I've tried various z-indexes for different elements and cannot 
get any changes to occur. Again, your help greatly appreciated!

-- 
Debbie
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] missing image in IE6, and a menu stacking issue

2009-01-07 Thread Bill Brown
Debbie Campbell wrote:
 My absolutely-positioned #challengeBtn link is missing in IE6 but 
 present in other browsers (the big blue 'Create a Group' button on the 
 orange bar):

 Also, the submenus for the navigation bar are sliding under the content 
 in IE6/7. I've tried various z-indexes for different elements and cannot 
 get any changes to occur. Again, your help greatly appreciated!

Hi, Debbie--

First, the easy fix:
#header{z-index:1;}
...will fix your menu issue.

I suspect something's gone awry with your png fix and that's what's 
causing the trouble on your challengeBtn link.

Setting the element to position:absolute after the page load causes it 
to appear exactly as it should. Paste this into your address bar to check:
javascript:(function(){document.getElementById(challengeBtn).style.position=absolute;})();

Have you tried a simple template without the JS?

Hope it helps.
--Bill
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] missing image in IE6, and a menu stacking issue

2009-01-07 Thread Gunlaug Sørtun
Debbie Campbell wrote:
 My absolutely-positioned #challengeBtn link is missing in IE6 but 
 present in other browsers (the big blue 'Create a Group' button on
 the orange bar):
 
 http://www.redkitecreative.com/projects/endorphin/

Wrap the #challengeBtn anchor in an otherwise empty div, to prevent the
a:p element next to... bugs in IE6.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/