I am now trying to learn how to make a drop down menu. On my test page it works in Firefox but not in IE 6. I researched it and saw that in order to work in IE you need some JavaScript. I copied some script from "Son of Suckerfish Dropdowns". It still doesn't work. I do not know Javascript so I am not sure how to fix it.
Here is my test page ... http://paperandclay.com/test-encircle-011209.html
I'm trying to keep it simple while I learn before I start making it look better.
Thanks for your help
pk
... so much to learn!!
IE6 doesn't like the hover on anything except a link. Sp try changing the following:
#barnav li:hover ul {
left: auto;
}
to:
#barnav li:hover ul, #barnav li:sfhover ul {
left: auto;
}
so it includes your javascript.
#barnav li:hover ul {
left: auto;
}
to:
#barnav li:hover ul, #barnav li:sfhover ul {
left: auto;
}
so it includes your javascript.
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.