That page is definitely laid out in an odd way. And z-index has a role. But more importantly the page is in quirks mode and hasn't always completed its layout on document ready. I figured out a way to make it all work though. Working from what you had when you first posted, change the DOCTYPE from:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
to:
Use this custom version of the script (right click and 'Save As'):
ddsmoothmenu.js
And in the bigdaddybaseball.com/styles/allstyles.css file, around line #415 get rid of the highlighted:
Code:
/*Top level menu link items style*/
.ddsmoothmenu ul li a{
z-index:120;
display: block;
background: #000041; /*background of menu items (default state)*/
color: white;
padding: 8px 10px;
border-right: 1px solid #778;
color: #2d2b2b;
text-decoration: none;
opacity: 0.9;
filter :alpha(opacity=0);
}
You won't get that semi see through look in IE 8 and less but at least it will work. You could but then you would have to lose the drop shadow in that browser. And the text will lose it's anti-aliasing quality. So I recommend against that.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks