Thursday, March 26, 2009

Ajax Calendar display problem

The Ajax calendar might display something like this



This problem is due to padding in the css file.

To set this right, you can append


div.ajax__calendar_days table tr td
{
padding-right: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-top: 0px;
}


to the css file.

The calendar now looks like this

No comments:

Post a Comment