Right Sidebar Issue in IE
kmeghji - November 13, 2007 - 14:33
| Project: | art4 blue |
| Version: | 5.x-3.x-dev |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | reviewed & tested by the community |
Jump to:
Description
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

#1
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*/
}
#2
works for me! thanks.