How Do I Lower The App Name And Hamburger Menu Icon On Layout Premium A
Follow the instructions below to decrease the height of the App Name and Hamburger Icon that’s on the app Home Page of Layout Premium A.
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 SCSS box. 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 above code.
To lower it for iOS only use:
/*** BEGIN: LAYOUT PREMIUM A - LOWER APP NAME AND HAMBURGER MENU ICON - IOS ONLY ***/
.platform-ios #layout_premium_a .homenavbar {
margin-top: var(--safe-area-inset-top) !important;
}
/*** END: LAYOUT PREMIUM A - LOWER APP NAME AND HAMBURGER MENU ICON - IOS ONLY ***/
To lower it for iOS and Android use:
/*** BEGIN: LAYOUT PREMIUM A - LOWER APP NAME AND HAMBURGER MENU ICON - IOS AND ANDROID ***/
#layout_premium_a .homenavbar {
margin-top: var(--safe-area-inset-top) !important;
}
/*** END: LAYOUT PREMIUM A - LOWER APP NAME AND HAMBURGER MENU ICON - IOS AND ANDROID ***/
4) Click Save.