Okay, looks like I spoke a bit too soon. I've got my menu working mostly right (except in IE6), but I'm not sure how to make it so that when the user scrolls down, the menu scrolls down with them. I tried position:fixed for IE8, but when I used it my menu would disappear and according to what I've read online position:fixed does not work in IE6 or IE7.



Here's what I've got so far.
HTML Code:
<!--[if lte IE 8]>
<style type="text/css">
a.skip_to_nav {display: none;}
#navigation_menu{
position: absolute;
bottom: 4390px;
right: 1090px;
background: #000080;
}
#navigation_menu li{
display: inline;}
#site_body, #contact{
margin: auto;
position: relative;
min-width: 320px;/* ie7/8 */
max-width: 960px;/* ie7/8 */
left: 100px;
}
* html {width: 768px}/* ie6 */
</style>
<![endif]-->
</head>
Bookmarks