PDA

View Full Version : popup positioning conflict


mattodd
12-16-2008, 06:53 AM
The mouseover popup is getting pushed off the end of the window.

I've figured out that there's some sort of conflict with the positioning of the divs that the calendar is contained within. For example:

#sidebar_r {
position: absolute;
top:200px;
left:800px;
width: 200px;
}

It works very well for everything on the page... except the popup is getting pushed over by an extra 200 x 800.

The obvious answer would be to compensate for this by adjusting the popup position in the admin settings. But it isn't working. In fact, it doesn't seem to no matter what value I put in there, the popup appears to adopt #sidebar_r positioning.

I've tried to find a way around it, but it looks to me like the piece I want to get at is in the encoded files. Is there any other way that you can think of to correct this without breaking the rest of my page?

http://wrya.matttodd.ca/

ve9gra
12-16-2008, 07:16 AM
Actually, that's caused by not having the $OL line at the proper place.

View Part 1 of how to integrate the calendar in WP at http://www.epctutorials.com/

Having the $OL code inside of a <div> and not directly after <body> will cause issues like the one you are experiencing.

mattodd
12-16-2008, 08:00 AM
bah!! i swear i read those instructions in all three places i saw them... in this forum, on the ephp site, in the tutorials... obviously not well enough.

thanks for the speedy reply!