I'm not sure how you can fix it. However, using IE add on 'developer toolbar', I see that the script is working, but that the style is not associated with the generated DOM source of the page, specifically not these styles:
Code:
#popitmenu{
position: absolute;
background-color: #DEFFE4;
border:2px solid #99FFA7;
font: normal 12px Verdana;
line-height: 22px;
z-index: 100;
visibility: hidden;
}
#popitmenu a{
text-decoration: none;
padding-left: 5px;
color: black;
display: block;
}
#popitmenu a:hover{ /*hover background color*/
background-color: #99FFA7;
}
which are, of course a part of the DOM source in FF, and are essential to the display of the popit menu.
Now, these styles show up in IE's DOM source, and in FF's DOM source for the page:
Code:
.wHeaders {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
}
.style {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
.textsmall {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 8px;
color: #000000;
}
hr {
border: 0px;
margin-bottom: 4px;
margin-top: 3px;
border-top: 1px dotted #777777;
height: 1px;
}
a:link {
color: #0000FF;
}
a:visited {
color: #0000FF;
}
a:hover {
color: #0000FF;
}
a:active {
color: #0000FF;
}
.style1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #61BCF7;
font-weight: bold;
}
.style2 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #D9B437; font-weight: bold; }
.style3 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333333;
font-weight: bold;
}
.imgmargin{
margin-left: 4px;
margin-bottom: 4px;
margin-top: 4px;
}
So, perhaps if you were to put the popit menu styles with those, it would work.
Bookmarks