In the kalendar.css file find this section (around line #18) and make the highlighted change:
Code:
.eventDay {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
background-color: #ffffff;
height: 80px;
width: 14%;
padding:5px;
vertical-align: top;
overflow: visible;
}
Also, for some browsers add a 100 z-index here (same file around line #355):
Code:
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
z-index: 100;
}
Bookmarks