The last update to version 8.1.2 came with some changes to the styles. The module style sheet, in thus far my first issue, has an extra '!important' after the float of line items...
Changed from:
div#maximenuck ul.maximenuck {To:
float: none;
}
div#maximenuck ul.maximenuck {In my case, I just needed to adjust my style sheet as I was using the class of the line item instead of the ID (and IDs take precedence over classes).
float: none !important;
}
Comments