Re: Mouse over date produces "ghost" of event over page
Re: Mouse over date produces "ghost" of event over page
Re: Mouse over date produces "ghost" of event over page
Dick, your "tooltip" look like the one in the attached picture? The Event calendar popup window shows all the events in the day you are hovering with the mouse. It can be bigger if many events are present in the same day.

Re: Mouse over date produces "ghost" of event over page
Re: Mouse over date produces "ghost" of event over page
Re: Mouse over date produces "ghost" of event over page
Re: Mouse over date produces "ghost" of event over page
Dick, could the "ghost effect" you mention about the calendar popup window (wich is a feature) be caused by an incomplete definition of the style sheet you are using? In other word, when the calendar popup appears, are you able to see through something on teh back of teh popup window?. If this happen, the styles.php you are using should be updated to properly define border and background colors/image for the calendar popup window.
Re: Mouse over date produces "ghost" of event over page
.cal_popup_bg {
border-top: 2px #FF9A00 solid;
border-left: 2px #FF9A00 solid;
border-right: 2px #000000 solid;
border-bottom: 2px #000000 solid;
background-image: url(/gradient.jpg);
padding: 0px;
margin: 0px;
}
My problem is that I don't want a background image for the header in the popup box - just a colour (FF9A00). I don't use background images for the rest of the site, but had to include it in the calendar popup otherwise the header was 'transparent'. The colour I use is the same as other cell headings, so it would be helpful if I could change it to
background-color: <?PHP echo $THEME->cellheading?>;
but I can't see where the calendar is pulling the popup box from.
How/where do I change this?
Hey Jon,
Thanks for the tip.
As to your question just change the background-image: to
background-color: #FF9A00
I checked it and it works.
Dick