Hey there! I've noticed that my webpage looks different in various browsers - it's awesome in Chrome, okay in Mozilla, but pretty bad in IE 7.
Unfortunately, most of my page visitors use IE.
The issue lies with the borders. I have a reddish border around the rows of the grid. In Chrome, everything looks fine. In Firefox, the top and bottom of each row and the outer columns have their borders, but the inner columns are missing vertical borders.
In IE, all the borders are completely missing, leaving white gaps between columns and rows.
I would really appreciate any tips or tricks you can share to help me fix this.
EDIT:
<asp:GridView ID="ProductsGrid" runat="server"
AutoGenerateColumns="False" Height="323px"
style="margin-top: 23px; margin-left: 0px;" BackColor="White"
BorderStyle="None" BorderWidth="0px" CellPadding="4"
Width="1210px" OnPageIndexChanging="gridView_PageIndexChanging"
onrowdatabound="ProductsGridView_RowDataBound" AllowPaging="True"
PageSize="25">
</Columns>
<EmptyDataRowStyle BackColor="Gray" />
<FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
<HeaderStyle BackColor="Black" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center" />
<RowStyle ForeColor="#330099" BackColor="White" BorderColor="#6E1414"
BorderWidth="1px" />
<SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
<SortedAscendingCellStyle BackColor="#FEFCEB" />
<SortedAscendingHeaderStyle BackColor="#AF0101" />
<SortedDescendingCellStyle BackColor="#F6F0C0" />
<SortedDescendingHeaderStyle BackColor="#7E0000" />
</asp:GridView>