How to align text within a FooterTemplate cell in a GridView

asp.net, cell, gridview, html, text-alignment

Solution

In the parent column of the template try setting `FooterStyle-HorizontalAlign="Right"`

Problem

How to align text within a FooterTemplate cell in a GridView I tried the following but the text is still centered (there is a parent center tag): ``` <FooterTemplate> <span style="size:100%; padding:0; text-align: right">Total:&nbsp;</span> </FooterTemplate> ```

Original source