When using the ZEN theme in liquid layout mode, on resizing the browser window, the navigation menu disappears in IE6. It seems to be fine in fixed with mode, however.

Comments

JohnAlbin’s picture

Confirmed. But it's the sidebars that disappear when you resize the web browser window, not the navigation menu.

When you reload the page, the sidebars are fine.

JohnAlbin’s picture

Title: Disappearing Menu » IE6: sidebars disappear when resizing window
Priority: Normal » Critical

Richard, thanks for finding this before the 5.x-1.0 final release!

JohnAlbin’s picture

Status: Active » Fixed

Add this to your ie.css file:

  #main
  {
    _zoom: 1; /* Otherwise with a liquid layout, sidebars disappear when resizing the windows in IE6 */
  }

This has been added to 5.x-1.x-dev.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

StephanP’s picture

Version: 5.x-1.0-beta2 » 5.x-1.0

I ran into the same problem recently.

  • #main did not receive its background-color and border
  • Side-bars would disappear when resizing the canvas
  • And .block did not receive its background-color and border

All typical examples of the infamous IE haslayout problem.

I added

#main {   /* FIX IE HASLAYOUT PROBLEM */
    height: 1%;
}

.block {   /* FIX IE HASLAYOUT PROBLEM */
    height: 1%;
}

to my sub-theme's ie.css

Stephan