Closed (fixed)
Project:
Acquia Prosper
Version:
6.x-1.0-beta4
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
15 Jun 2010 at 07:42 UTC
Updated:
20 Feb 2012 at 03:30 UTC
Jump to comment: Most recent file
Comments
Comment #1
jeremycaldwell commentedTry adding this bit of CSS to your "local.css" file for your theme.
That should get the menu to display correctly and on top of the content area.
Comment #2
Georgii commentedThat works to solve the first part of the problem! Thanks!
Comment #3
Georgii commentedThere is one side effect found with this "z-index" fix. Breadcrumb drop-down menu is now under a side bar menu.
Please see screen shot attached.
Is it possible to fix this by adding a "z-index" to another style for the breadcrumb drop-down menu?
Comment #4
Georgii commentedI guess
will work :)
Comment #5
jeremycaldwell commentedYeah for now that works. This will need to be reworked within Fusion Core I think so will have to take a closer look at this soon and report back here.
Comment #6
Georgii commentedThank you!
Comment #7
jeremycaldwell commentedChanges have been made to Acquia Prosper and the menu displays correctly in all browsers. This change will be in the next release of the theme.
Comment #8
jeremycaldwell commentedChanges have been made and are in the latest release of the theme.
Comment #10
gmarcotte commentedI am having similar problem but I think the sub menus are being clipped.
I have css:
/* super fish menu css */
div#menubar div#block-superfish-1.block {
background: #00ff00; /* just so I can see the shape of the region */
}
then change it to this
/* super fish menu css */
div#menubar div#block-superfish-1.block {
background: #00ff00;
height:100px;
}
this pushes everything down and I see more of the drop down menu but the menu will stop at the bottom of the 100px. this is not a good solution.
I tried this:
div#menubar div#block-superfish-1.block {
background: #00ff00;
z-index: 9999;
overflow: visible;
}
and this works. !!
one madding thing about css hacking is that you have to configuration -> performance -> clear cache
some times to make any small change to show up.