Use the code below to change hide the “My Account” link when using Layouts 1 or 9:
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, 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 above code.
/*** BEGIN: HIDE MY ACOUNT IN LAYOUTS 1 AND 9 ***/
/* Layout 1 */
.layout .tab-item:nth-child(1) {
display: none;
}
/* Layout 9 */
.layout.l9 ul.items li:nth-child(1) {
display: none;
}
/*** END: HIDE MY ACOUNT IN LAYOUTS 1 AND 9 ***/
4) Click Save.
Note: Replace(1) with the page number you want to remove.