Just wanted to let you know that centered buttons show up left-aligned on the gmail app for android.

I fixed this by adding a .centered-button-container class for the containers of buttons that are supposed to be centered. The problem is that gmail is ignoring the width="100%" on the <table> and needs a style="width: 100% !important". This class gets inlined of course.
HTML Before:
`
`
HTML After:
`
`
CSS After:
.centered-button-container { width:100% !important; }
If you'd like, I can submit a pull request. And thanks for a super-reliable template.
Just wanted to let you know that centered buttons show up left-aligned on the gmail app for android.
I fixed this by adding a .centered-button-container class for the containers of buttons that are supposed to be centered. The problem is that gmail is ignoring the
width="100%"on the<table>and needs astyle="width: 100% !important". This class gets inlined of course.HTML Before:
``
HTML After:
`
CSS After:
.centered-button-container { width:100% !important; }If you'd like, I can submit a pull request. And thanks for a super-reliable template.