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.

CommentFileSizeAuthor
ubiquity.png74.9 KBEWB

Comments

melon’s picture

Status: Active » Closed (works as designed)

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.

EWB’s picture

Thanks - that fixed the issue.