Sounds like a CSS z-index issue. Try giving the drop in box(es) a very high z-index value, by applying it based on the CSS class of the box. Lets say your initialization code for the box is as follows:
Code:
var dropinbox1=new dropincontentbox({
source:['#dropbox', 'dropincontent.htm'], //#id of DIV to show if defined inline, or [#id, path_to_box_content_file] if defined in external file
cssclass:'dropinbox standardshadow', //arbitrary class(es) to add to the drop in box to style it
showduration:10 //disappear after x seconds?
})
You can target the dropinbox class in your CSS:
Code:
<style>
.dropinbox{
z-index:10000;
}
</style>
Bookmarks