With IE 7 (haven't seen if this happens in earlier version) the right sidebar is pushed down below the center content - it is on the right, however it's way down the page. Any thoughts on how to resolve this or has this been resolved in the latest dev version?

Thanks

Comments

kmeghji’s picture

Quick update - I've isolated and resolved the issue, although I'm not 100% sure about the solution as I'm fairly new to CSS.

In layout.css I modified the following block and made the negative offset 1 pixel larger than the margin-right specified for the page layout with a right sidebar and voila it pulled the sidebar up:

#sidebar-right {
.margin-left: -236px; /* IE7 Fix */
}

* html #sidebar-right {
margin-left: -236px; /* IE6 Fix*/
}

goodeit’s picture

Title: IE issue? » Right Sidebar Issue in IE
Status: Active » Reviewed & tested by the community

works for me! thanks.