Reputation: 23989
I have a few events in my agenda, but there are displaying like this :
I looked up at CSS, but all seems correct :
position: absolute; z-index: 8; top: 0px; left: 222px; width: 43px; height: 333px;
)Do you have any clue ?
Upvotes: 0
Views: 338
Reputation: 23989
I found the answer myself :
I have a reset.css which set max-width: 100%
to divs and links, so I added :
.fc a, .fc div { max-width: none; }
to my CSS and it worked fine.
Upvotes: 1