Hi,
Hoping someone can assist as well as explain the following:
I am using jQuery Superfish menu on ie6 and from what I can see from the apache log files for my session, is that whenever I hover over a menu item in my Superfish menu that has sub-menus, depicted with menu item that has a white arrow head image to the right of the menu item label, a whole heap (say 25 lines) of log entries spit out with the following type message:
- - [23/Aug/2010:11:57:45 +1000] "GET /abcprod/images/arrows-ffffff.png HTTP/1.1" 304 - etc…..
Unsure also what the number 304 indicates where in the apache log?
These types of entries keep on appearing everytime I just hover over a menu item with sub-menus and this also includes sub-menu items that also have child menu items.
The strange thing is though, when running the app through Google Chrome and checking that session in the apache logs, it does spit out anything relating to the arrows-ffffff.png image.
Can anyone pls assist as to why and what is going on here with ie6 together with the Superfish menu hover?
FYI, I have also included CSS that Superfish users relating to the class f-sub-indicator, i.e.
.sf-sub-indicator {
position: absolute;
display: block;
right: .75em;
top: 1.05em; /* IE6 only */
width: 10px;
height: 10px;
text-indent: -999em;
overflow: hidden;
background: url("/abcprod/images/arrows-ffffff.png") no-repeat -10px -100px;
}
==>
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .8em;
background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
background-position: -10px -100px; /* arrow hovers for modern browsers*/
}
Thanks