Ubiquity and SimpleMenu - Misalignment
EWB - April 28, 2008 - 01:03
| Project: | Ubiquity |
| Version: | 5.x-0.3 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | by design |
Jump to:
Description
Fantastic theme - nice work. I find, however, that the theme gets "funky" when used in combination with the Simplemenu module http://drupal.org/project/simplemenu . Any suggestions for a fix? I have attached a screenshot of the misalignment. This is with Drupal 5.7 in Firefox and Safari.
| Attachment | Size |
|---|---|
| ubiquity.png | 74.9 KB |

#1
The layout gets broken because certain elements in the header are positioned directly. As a workaround I suggest appending this code to the very end of the style.css of the theme:
#simplemenu {position: absolute;
}
This way the simplemenu will not interact with other elements on the page. One side effect is that it overlays the design. If you use this module and its menu for administration purposes, this might not be a problem.
#2
Thanks - that fixed the issue.