Hi everyone, I have the solution to this problem:
Say you have a statichoverstyle css class for your hover style, you have to add two more css style rules to force the textbox to stop using the menu's background:
menu_onhover {
background-image: url('image');
}
Here's the fix
menu_onhover A:link {
background-image: none
}
menu_onhover A:visited {
background-image: none;
}
set your statichoverstyle on your asp.net menu control to menu_onhover and voila!
This should fix your problems (took me days to find this fix, but it works GREAT!)
hope it helps.