Board Meetings & Teaser Position Swap
Use this code in the scripts section of the advanced editor. The CSS will remove the extra padding around board meetings if you want that too
document.addEventListener('DOMContentLoaded', function () {
var mainContentSection = document.querySelector('.poc-instances.poc-instances-main-content');
var boardMeetingsSection = document.querySelector('.poc-instances.board-meetings');
if (mainContentSection && boardMeetingsSection) {
boardMeetingsSection.parentNode.insertBefore(mainContentSection, boardMeetingsSection.nextSibling);
}
});
.board-meetings {
padding: 0 !important;
}