Thursday, November 20, 2008

IE6 fixes

Double margin thingo

display: inline; /*IE fix -- http://www.positioniseverything.net/explorer/doubled-margin.html---*/

From Drupal - zen theme fixes

Horizontal navbar or menu

  • s floated next to each other - not sitting in line in IE6 

      ul.themenu li a,
      {
      _display: inline; /* Otherwise the blocks mistakenly get 100% width in IE5 */
      _di\splay: inline-block; /* Otherwise the blocks mistakenly get 100% width in IE6 */
      }

      ul.themenu
      {
      _width: 100%; /* Otherwise IE5 treats the ul as floated */
      _w\idth: auto; /* Reset to auto width for IE6 */
      }

  •