Calendar Month/Year not centered

If we have in our CSS

* {

margin: 0;

}



The month/year is not entered at the top of the calendar (its to the left), example “April, 2009”


Your css was also applyed to the month and year elements.


YOu can try to define the necessary margin for month in the following class:


.dhtmlxcalendar div.planeMonth{
margin-left: XX px !important;
}



No this did not work.  It adds margin on the left of each part of the date on the top.

Adding of next css rule, resolves problem


.dhtmlxcalendar table {
margin:auto;
}


Sample is attached.

1244465549.zip (70.2 KB)