When I use the month view of the calendar I am missing Sunday of each week.
Using ASP.Net Web forms. Can someone let me know where to adjust the widths of the days in the calendar?
Thanks
When I use the month view of the calendar I am missing Sunday of each week.
Using ASP.Net Web forms. Can someone let me know where to adjust the widths of the days in the calendar?
Thanks
Hi,
your page have css styles that breaks layout of the month view.
Try adding following rule, it should fix the problem:
#scheduler_here td, #scheduler_here tr{
margin:0;
padding:0;
}
Perfect. That solved the problem.
Thanks