I have a site with ad_the-morning-after theme .... all looks great in firefox and IE7 but the overflow auto problem is present.

There is a IE6 overflow auto hack in the CSS file to show both sidebars but it doesn't work. I have theme version 1.2 at the moment and I have made sure that the block content is within the block width but to no avail. I have also checked the hack in version 1.3 and it looks the same.

#content,
#navbar,
#sidebar-left,
#sidebar-right
{
_display: inline; /* display inline or double your floated margin! [1] */
_overflow: hidden; /* in ie6, overflow auto is broken [2] and so is overflow visible [3] */
_overflow-y: visible;
}

Can anyone suggest anything else to look at?

Many thanks.

Comments

perfectmatch’s picture

If anyone is having the same sort of issues, i have worked out what needs to be added to the ie6.css file:

#content,
#navbar,
#sidebar-left,
#sidebar-right,
#sidebar-left-inner,
.two-sidebars #right-container,
.sidebar-left #right-container,
.sidebar-right #right-container,
.sidebar-right #sidebar-right
{
_display: inline; /* display inline or double your floated margin! [1] */
_overflow: hidden; /* in ie6, overflow auto is broken [2] and so is overflow visible [3] */
_overflow-y: visible;
}

Hope this helps anyone else with the same issue.

cazam’s picture

Hi there,

I am having this issue. Really weird. Right sidebar fine on all my pages except for my homepage where it comes down below the content. I used an ie6 hack and floated right which helped move it over, but I still need to move it up. When I change the margin-top it effects all the pages so no good.
Any ideas?

site is http://cazam.eu and I'm drupal 6 marinelli 1.9

Thanks!

Carrie