When I try patch 03, it simply moves my navigation to the right in Chrome etc. .. but still stacks the navigation on top of each other in IE. It addresses the issue of the navigation items spanning the entire width of the container div, but does not display them inline.. they’re also still stacked over on the right side of the page.
found a fix. After looking at the default.css here was the code which was overriding my css:
div#container {
background: #fff;
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
overflow: hidden;
position: relative;
width: 100%;
}
So i changed my CSS from:
#container{ background: #EAEAEA; width: 960px;}
to:
div#container{ background: #EAEAEA; width: 960px;}