Fix Laout 1 More button on iPads.

How to fix Layout 1 “More” button on iPads (2nd & 3rd options don’t work)?

Use the code below to fix the issue with Layout 1 where clicking the “More” button/icon prevents the 2nd and 3rd options from appearing.

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.

/** Begin fix layout 1 other option on ipad*/

@media only screen

and (min-device-width : 768px)

and (max-device-width : 1024px) {

.platform-ios{ .layout.l1 { ul.tabs { height: 7%!important; }}}

.scroll {

margin-top: 160px;

height: 100%;

}

}

/** End fix layout 1 other option on ipad*/

4)Click Save.

IMPORTANT NOTICE: 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.