Back Home

Open Designs

Community. Driven.

  1.  
    My lists at my blog: www.cipherblog.net are double spaced in IE6. How do I fix it. Thanks.
    •  
      CommentAuthorkirby145
    • CommentTimeMay 14th 2008 edited by kirby145 on the 14th May 2008 at 22:43:59 EDT
     
    My Ie6 is broken so I cant give you the exact code. But it is something like

    li { margin: 0
    OR
    padding: 0
    }
  2.  
    hmmm, that didn't work, sorry.
    •  
      CommentAuthorsnop
    • CommentTimeMay 15th 2008
     
    It's because IE screws up when you've got a display block element inside a display block list item. Something like this should fix it:

    #side .block ul li {
    display: inline;
    }
  3.  
    ah! That did the trick! Thanks!
    •  
      CommentAuthorsnop
    • CommentTimeMay 17th 2008
     
    Anything to help someone avoid some IE related pain.
  4.  
    I agree.