1

I'm using jquery-week-calendar v2.0-dev and when I show two events on the same day, the second event shows the wrong time. When I grab the bottom of the first event with the mouse and start resizing, the second event suddenly appears. I have checked all my .js and .css files against the demo in weekcalendar.html and everything matches. Anyone have any ideas? Thanks! Chirag

See attachment.

Chirag Patel
  • 5,819
  • 8
  • 35
  • 38

1 Answers1

0

Try adding a rule like this to your .css stylesheets:

.wc-cal-event {
  position: absolute !important;
}

If you already have the absolute position, the !important; was also necessary

Chirag Patel
  • 5,819
  • 8
  • 35
  • 38