The code below will center the image and text when sending a Push Notification.
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 box do not delete it! Simply add this code “below” the last character of code in the box.
/** Start center image & text on push notifications*/
[state="push-list"] {
.col-offset-25 {
margin-left: 12.5%;
}
.text-right {
text-align: center;
}
}
/** End center image & text on push notifications*/
4) Click Save.
NOTE:Adjust the “margin-left” (12.5%) line to fit your needs. Also, the “text-align” line (center) is for text.