[css-d] Menu problem with IE6+7

2009-03-13 Thread Sh
Hi,
I have a problem in IE (6+7) when mouse-over the menu where there's a
sub-menu (dreamweaver- spry), It shows a white cell under the sub
menu.
This doesn't show wither in FF, Safari and IE mac.
Any help will be greatly appreciated

here is the site: http://wendyrichmond.com

thanks


-- 
Sh
__
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] Menu problem with IE6+7

2009-03-13 Thread Bill Brown
Sh wrote:
 Hi,
 I have a problem in IE (6+7) when mouse-over the menu where there's a
 sub-menu (dreamweaver- spry), It shows a white cell under the sub
 menu.
 This doesn't show wither in FF, Safari and IE mac.
 Any help will be greatly appreciated

Ah, SpryMenus. Hate's too strong a word, but it's close. What you're 
seeing isn't actually a white cell, but rather an iframe hack included 
by the SpryMenu JavaScript. It's frequently more harmful than helpful.

Your best solution is probably to remove the iframe creation part of the 
javascript, or simply comment it out.

Another possible solution would be adding this to your site head tag:
!--[if lte IE 6]style type=text/css
.Menue iframe
   {
 filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
   }
/style![endif]--

That's completely untested for your site, but it works quite well on my 
(home-grown, non-Spry) menus.

Best of luck.
Bill

-- 
!--
  ! Bill Brown macnim...@gmail.com
  ! Web Developologist, WebDevelopedia.com
--
__
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] Menu problem with IE6+7

2009-03-13 Thread Sh
thanks! the white iframe did go away, all works perfect on IE 6 but in
 IE 7 the menu expands and only when rollover the sub menu it shrinks
back. Any idea how to fix that?
(I added both the head hack tag plus deleted the iframe from the JS)

thanks!!
Sh

On Fri, Mar 13, 2009 at 4:46 AM, Bill Brown macnim...@gmail.com wrote:
 Sh wrote:

 Hi,
 I have a problem in IE (6+7) when mouse-over the menu where there's a
 sub-menu (dreamweaver- spry), It shows a white cell under the sub
 menu.
 This doesn't show wither in FF, Safari and IE mac.
 Any help will be greatly appreciated

 Ah, SpryMenus. Hate's too strong a word, but it's close. What you're seeing
 isn't actually a white cell, but rather an iframe hack included by the
 SpryMenu JavaScript. It's frequently more harmful than helpful.

 Your best solution is probably to remove the iframe creation part of the
 javascript, or simply comment it out.

 Another possible solution would be adding this to your site head tag:
 !--[if lte IE 6]style type=text/css
 .Menue iframe
  {
    filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
  }
 /style![endif]--

 That's completely untested for your site, but it works quite well on my
 (home-grown, non-Spry) menus.

 Best of luck.
 Bill

 --
 !--
  ! Bill Brown macnim...@gmail.com
  ! Web Developologist, WebDevelopedia.com
 --




-- 
Sh
__
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/