Does anybody knows how to right-align a header of just one column of a gridview. Been searching the web and still cannot find a solution for it.The HorizontalAlign='Right' works for the data, but not for the header. I do not want to right-align all columns but just one.Here's an excerpt of the code:\[code\]<asp:GridView ID="gvCustomer" AutoGenerateColumns="False" runat="server"> <Columns> <asp:BoundField DataField="CustomerId" HeaderText="Customer Id" /> (other fields here) <asp:TemplateField HeaderText="Contact Name" HeaderStyle-HorizontalAlign="Right" > <ItemTemplate> <asp:Label runat="server" ID="lblContactName" Text='<%# Eval("ContactName") %>' /> </ItemTemplate> <ItemStyle HorizontalAlign="Right" /> <HeaderStyle HorizontalAlign="Right" /> </asp:TemplateField> </Columns></asp:GridView>\[/code\]Any help is appreciated. Thanks!Niki