It looks like you have a syntax error in your css file on this line:
Code:
.droplinetabs a:link, .droplinetabs a::visited, .droplinetabs a:active{
get rid of one of the colons ( : ) and that will fix that error. As far as the menu not being aligned correctly, I'm still looking at that.
Edit: After looking at the code some more, I found that the syntax error I highlighted above is in the original dd script css file. Also, I found that the reason why the positioning is off is because of something in your oneColFixCtrHdr.css file. Not sure what it is yet, but when I took that css file out of the page, the menu worked perfectly.
Another Update: the issue in the following section of code:
Code:
.oneColFixCtrHdr #container {
width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #FFFFFF;
margin: 2% auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
position: relative;
left: 50%;
margin-left: -390px;
top: 2%;
}
if you change it to the following, it works perfectly in Firefox. Not sure about other browsers, but pretty sure it will work.
Code:
.oneColFixCtrHdr #container {
width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #FFFFFF;
margin: 2% auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
}
Hope this helps.
Bookmarks