I have encountered a frustrating issue that I cannot seem to resolve. When I compile the page, the tables on the left side display correctly as intended. However, once I upload it to my company's intranet and load the data (which is the same), the tables on the left side expand beyond the screen resolution of my work laptop (1600x900) while the tables on the right side shrink to about a quarter of their size.
Any assistance with this problem would be greatly appreciated. Below, you will find the .aspx file for the page and the accompanying style sheet. Only the top two panels of tables are included here.
ShippingReference.aspx
<table style="width: 1000px;">
<tr style="height: 800px;">
<td style="width: 50%; height: 100%;" valign="top">
<asp:Panel runat="server" ID="pnlMainInfo" style="margin:20px; background-color:#ccccff" GroupingText="Main Information:">
<table style="width:100%; height:100%;">
<tr align="center">
<td style="width: 25%;">
<div class="TBox" style="width: 90%; height: 100%;">
<div class="header"> <h2>Terms:</h2> </div>
<asp:TextBox ID="txtTerms" runat="server" TextMode="MultiLine" Rows="5" MaxLength="500" Width="93%" CssClass="text" />
</div>
</td>
</tr>
<!-- More table rows omitted for brevity -->
</table>
</asp:Panel>
<cc1:CollapsiblePanelExtender ID="pnlMainInfo_CollapsiblePanelExtender"
runat="server" Enabled="True" TargetControlID="pnlMainInfo">
</cc1:CollapsiblePanelExtender>
</td>
<td style="width: 50%; height: 100%;" valign="top">
<asp:Panel runat="server" ID="pnlEDI" style="text-align:center; margin:20px; background-color:#ccccff" GroupingText="EDI:">
<table style="width:100%; height:100%;">
<!-- More table rows omitted for brevity -->
</table>
</asp:Panel>
</td>
</tr>
Style Sheet:
body { text-align:center; }
.lblErrorMessage { font-family: Tahoma; font-size: 9pt; color: red; }
.TBox {
color:#333333;
font-size:11px;
background: url('../../Images/box_bottom_right.gif') no-repeat bottom right;
margin: 0;
padding:0;
font-family:Verdana, Arial, Helvetica, sans-serif;
}
<!-- CSS styles for TBox class omitted for brevity -->