Hi,
I'm having a weird css issue. You can see it here: http://goudaform.sc34.info/calendar/ if you will click the tiny arrow that is beneath the entry for Sunday the 16th. (Not the link that says "first event;" that works fine.) The problem is that the box which pops up is clipped. The other item on the page, the one for the 17th appears correctly.
My 2c-l-fixed.css has this:
#main {
width:940px;
margin:0 auto;
overflow:hidden;
position:relative;
}
In my style.css, I have this:
#main {
background: #fff url(images/roots.gif) no-repeat right top;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
Apparently, the overflow is hidden, which is odd because I read that this declaration is not inherited, and the object in question is nested deeply in more divs and a table.
Removing the declaration makes things even worse. The little pop-up div will show just fine...but the #main div's white background and its bg image (those root things) will disappear and the div will be the same green as the rest of the page.
I've never seen this.
Does anyone know how I can get the little popups to display correctly without losing my design elements?
Thanks a bunch!