Here is an example:
Code:
<html>
<head>
<style>
div#altmenu {
display: none;
}
</style>
<!--[if IE]>
<style>
div#mainmenu {
display: hidden; /*hide from IE*/
}
div#altmenu {
display: block; /*show to IE*/
}
</style>
<![endif]-->
</head>
<body>
<div id="mainmenu">
This is menu that FF, Opera, Safari, NetScape will all see.
</div>
<div id="altmenu">
This is the menu IE will see.
</div>
</body>
</html>
That code should make it so IE sees "This is the menu IE will see." and anything else will see "This is menu that FF, Opera, Safari, NetScape will all see." so in each DIV you can have a different menu, in one place a menu that works well with IE. Maybe just textlinks even. In the other place the Accordion Menu/whatever you want to use.
Bookmarks