In APEX 3.1.1 all compound item types - items that contain HTML layout and multiple inputs - have been surrounded by a fieldset. The result is that some items that previously nicely aligned horizontally now wrap to the next line.
It mainly effects items with Post Element Texts or where a ColSpan > 1 is defined.
This unwanted effect is easily repaired by creating a new CSS file containing:
and referencing this CSS file in your template. The result then looks like it was before:
It mainly effects items with Post Element Texts or where a ColSpan > 1 is defined.
This unwanted effect is easily repaired by creating a new CSS file containing:
fieldset{display:inline;vertical-align:middle;}
and referencing this CSS file in your template. The result then looks like it was before:
Comments