Need help customizing gridlines ASP.net?

  • Thread starter Thread starter d h
  • Start date Start date
D

d h

Guest
Need help desiging my grid particular the content. I need to change the content to an xxsmall text and make it align at the top of the cell.

I have an external stylesheet called default.css that has the class smbody that applies to this but cant get it to work. Heres my code


<asp:GridView ID="GridView1" runat="server"
Width="100%"
BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px"
CellPadding="3" AutoGenerateColumns="False">
<FooterStyle BackColor="White" ForeColor="#000066" />

<PagerStyle ForeColor="#000066" BackColor="White" HorizontalAlign="Left" VerticalAlign="Top" />
<SelectedRowStyle ForeColor="White" BackColor="#669999" Font-Bold="True" />
<HeaderStyle BackColor="#E0E3F6" Font-Bold="True" ForeColor="Black" />
<RowStyle ForeColor="#000066" />
 
Back
Top