Use the code below to lower the footer menu items on Layout 1 so that it will work with features such as Journal, Messages, etc.
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced CSS box and enter the following code. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the code below.
/*** BEGIN: LAYOUT 1 - FIX BOTTOM MENU BUTTON DISPLAY ***/
/* Message bottom fix */
.layout_1.layout-always-visible ion-view.chat-window { height: calc(97vh - 62px); }
/* Journal post button fix */
.layout_1.layout-always-visible ion-view[state="journals-new"] { height: calc(97vh - 62px); }
/*** END: LAYOUT 1 - FIX BOTTOM MENU BUTTON DISPLAY ***/