Flyouts are appearing behind the parent items, but only on some computers. I've yet to find any consistency.

Screenshot attached...

http://dev.simple-stationery.com

I appreciate your help...

Comments

bbshopplf’s picture

Title: Blocks in different places on different PCs - why? » Parent menu items overlap flyouts
jeremycaldwell’s picture

Assigned: Unassigned » jeremycaldwell

Thanks for providing a link to the site so I can do some cross-browser testing. I tested in FireFox, Safari, Chrome, Opera, IE8, IE7, and IE6. The overlapping issue was present in IE7 and IE6 so I'll work on getting that fixed as it is an issue with the theme. I'll take a look at that and provide you with some CSS fixes for that shortly.

jeremycaldwell’s picture

I have this working correctly now for all browsers. These changes need to be made to Fusion Core in order to work correctly.

Here is the change I made to the CSS in the "style.css" file:

.sf-menu li:hover,
.sf-menu li.hover {
  z-index: 100;
}

And then in the "script.js" I made this change for the "Drupal.behaviors.fusionIE6fixes = function (context) {" script.

$('.sf-menu li').hover(function() {
  $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');
});

This change will be in the next release of Fusion Core so you shouldn't have to add it again later. Please try these files and let me know if they fix the issue for you as well.

jeremycaldwell’s picture

StatusFileSize
new8.26 KB

Attached are the updated files for Fusion Core.

bbshopplf’s picture

I'll give it a shot, and let you know...

sociotech’s picture

Status: Active » Postponed (maintainer needs more info)
sociotech’s picture

Status: Postponed (maintainer needs more info) » Fixed

Fixed in 6.x-1.0 release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.