As a newcomer to the coding world, I'm seeking guidance on how to resize a textbox control inside a modal window. Despite setting the width property, the textbox only occupies half of the modal window. Here's how I've structured the modal window:
<div id="BusinessRejectModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Enter reason for rejection</h4>
</div>
<div class="modal-body">
<asp:TextBox ID="txtBusinessRejectModal" runat="server" Height="300px" TextMode="MultiLine" Width="1000px"></asp:TextBox>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary btn-lg" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
Although I've experimented with various width values in the bootstrap.css file, the issue persists. How can I properly format the text box within the modal window? Would appreciate any insights or solutions!