How to reproduce
* Add a horizontal superfish main menu block
* ...e.g. just before the messages block
* Make drupal show a message

What happens:
* The message starts right of the superfish menu and wraps

Comments

axel.rutz created an issue. See original summary.

geek-merlin’s picture

Status: Active » Needs review

I fixed this on a site with some custom CSS (standard float clearing) that might go into this module:

ul.sf-menu:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}