Skip to main content

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

Position Swap 

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 Removal CSS 

.board-meetings {
  padding: 0 !important;
}