It's hard to pinpoint where the conflict in CSS occurs, since you have quite a few CSS file references on your page. There are no script errors with the script, so that tells me the problem most likely is due to some problem with the CSS for the drop down DIVs themselves, or this portion of what you currently have:
Code:
.dropmenudiv_a{
position:absolute;
top: 0;
border: 0px solid black; /*THEME CHANGE HERE*/
border-top-width: 8px; /*Top border width. Should match height of .ddcolortabsline above*/
border-bottom-width: 0;
line-height:18px;
z-index:100;
background:#F3F3F3;
color: #FFFFFF;
font-size:0.9em;
visibility: hidden;
}
.dropmenudiv_a:hover{
position:absolute;
top: 0;
border: 0px solid black; /*THEME CHANGE HERE*/
border-top-width: 8px; /*Top border width. Should match height of .ddcolortabsline above*/
border-bottom-width: 0;
line-height:18px;
z-index:100;
background:#F3F3F3;
color: #FFFFFF;
font-size:0.9em;
visibility: hidden;
}
.dropmenudiv_a a{
width: auto;
display: block;
text-indent: 5px;
border-top: 0 solid #678b3f;
border-bottom: 0px solid #678b3f; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: #909497;
background:#F3F3F3;
}
* html .dropmenudiv_a a{ /*IE only hack*/
width: 100%;
}
.dropmenudiv_a a:hover{ /*THEME CHANGE HERE*/
background-color: #F3F3F3;
color: #909497;
font-weight:bold;
}
At a glance, I spot a problem with the code in red- it's redundant at the very least. There may be other issues within the above chunk of code though, in which case, try reverting back to the original CSS. If that still doesn't help, look for any duplicate CSS classnames elsewhere on your page overriding the above, specifically, when it comes to position:absolute.
Bookmarks