Trying to explain the question clearly, I have a table with a textbox at the bottom where users can expand it by grabbing the corner. However, when they do so, other fields also move along with it. The setup of this form in a two-column table was inherited from someone else, so I cannot comment on their approach. Most fields are situated in the first column, except for one other textbox that spans both columns but remains single-lined and non-expandable. Only two fields are located exclusively in the second column, and these shift when the dynamic textbox is expanded. Attempting to fix this issue, I tried setting a width for the moving fields that previously lacked one, but unfortunately, it did not resolve the problem. This code snippet is written in C# ASP.NET.
Here's the code for the fields and textbox:
<td style="width: 140px;">
<label for="txtLastName" id="Label2" style="font-size:15px; font-weight:bold;"><span style="color: #FF0000">*</span>Last Name:</label></td>
<td>
<asp:TextBox CssClass="textbox" ID="txtLastName" runat="server" TabIndex="2"
Height="19px" Width="130px"></asp:TextBox></td>
<td colspan="2">
<asp:TextBox CssClass="textbox" ID="txtComments" runat="server" TextMode="MultiLine"
TabIndex="6" Height="30px" Width="275px"></asp:TextBox></td>
This may seem like too much information, but I believe it's a simple fix that I'm missing due to my novice experience in development.