The Page Title is not centered on Android. How do I fix it?

If your your Page Titles are not centered and are overlapping your “Back” link, use the following css to fix the issue:

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 you already have code in the box do not delete it! Simply add this code “below” the last character of code in the box.

/*** BEGIN: CENTER PAGE TITLE ON ANDROID ***/
.title.title-left.header-item {
text-align: center;
}
/*** END: CENTER PAGE TITLE ON ANDROID ***/

4) Click Save.

NOTE: For Step 3 above, you can also try:

/*** BEGIN: CENTER PAGE TITLE ON ANDROID - OPTION 2 ***/
.title.title-left.header-item {
margin-left: 40px!important;
}
/*** END: CENTER PAGE TITLE ON ANDROID - OPTION 2 ***/