See attached.

Comments

btopro’s picture

Priority: Normal » Minor
Status: Active » Needs work

hmm... that's very strange. Have you noticed this in other themes or just this one? OD seeks cross theme compliancy so I would welcome a patch to fix this (probably just modifying z-index of the lil popover thing, but not sure).

foredoc’s picture

with garland, since the popup window and block region have no overlap, it is hard to tell which one will be on top

foredoc’s picture

I "fixed" it by change the position of the popup window via css.

btopro’s picture

would you mind posting what the css changes were to accomplish this?

foredoc’s picture

I only modified the following in BOLD, and the solution is limited to my theme layout setup.
#od_popup {
display:none;
/*background-color:#FFF;
border:solid steelblue 5px;*/
position:fixed;
float:left;
left:30%; /* originally, it is 40% */
top:25%;
text-align:left;
background-image:none !important;
}

FYI