Reviewed & tested by the community
Project:
art4 blue
Version:
5.x-3.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Nov 2007 at 14:33 UTC
Updated:
7 Aug 2008 at 20:19 UTC
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
Comment #1
kmeghji commentedQuick 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*/
}
Comment #2
goodeit commentedworks for me! thanks.