-
Type:
Bug
-
Resolution: Low Engagement
-
Priority:
Low
-
None
-
Affects Version/s: 5.10.8, 6.9.1
-
Component/s: Space - Export / Import
-
1
-
Severity 2 - Major
Summary
Side-by-side sections on a Confluence page will show as on top of each other when exported to HTML.
Steps to Reproduce
- Create a page that has a page layout section with multiple columns.

- Save the page

- Export the space to HTML
- View the page
Expected Results
The sections will show side-by-side, as they do on the page.
Actual Results
The sections are stacked on top of each other.
![]()
Workaround
Add the following at the end of the styles/site.css file in the export:
.columnLayout {
display: flex;
}
.cell {
flex: auto;
}