I am currently utilizing Ajax Calendar v3.0.20820.6783
in my Asp.net-3.5
project and it is functioning properly. However, I am facing a CSS problem that I have been unable to resolve.
The calendar appears small and some days like Saturday and Sunday are missing as shown below. The default styling does not include any CSS, so modifying the width-height properties in CSS did not solve the issue; it only changed the white background size.
https://i.sstatic.net/ps7gU.png
Additionally, when I click on the month, it displays as depicted in the image below:
https://i.sstatic.net/URiAc.png
Any suggestions on how to address this? Thank you for your help.
Below is the code used to generate the calendar:
<table>
<tr>
<td>
<asp:Label ID="labelallowto" runat="server" Text="AllowedTo:"> </asp:Label>
</td>
<td>
<div>
<asp:TextBox ID="txtAllowedTo" runat="server" autocomplete="off"></asp:TextBox>
<cc1:CalendarExtender ID="Calendar1" BehaviorID="behaviorIDAllowFrom" FirstDayOfWeek="Monday" PopupButtonID="imgPopup" runat="server" TargetControlID="txtAllowedFrom" Format="dd/MM/yyyy"> </cc1:CalendarExtender>
</div>
</td>
</tr></table>
Thank you.
EDIT: When I adjust the width, it results in the following appearance:
https://i.sstatic.net/4Fibc.png
Only the background expands without resizing the actual calendar content.