Support » Fixing WordPress » Very big problem with IE6 !!

  • MoiMM

    (@moimm)


    Hello !

    Sorry, i’m french and my english is very bad ! πŸ™‚

    I have a website with a big (and strange) bug !
    This bug is only on IE6 !

    There’re only the home page that work … if you want to go on the other pages, there’re a error message ! πŸ˜•

    I have desactived all plugin … but the error message is only here !! πŸ™

    Someone can help me please ??
    The website > xxx.camping-lapoche.com

    For french people there are my post on the french wordpress forum
    > http://www.wordpress-fr.net/support/sujet-21822-urgent-bug-sous-ie6

    Regards,

    πŸ™‚

Viewing 1 replies (of 1 total)
  • rwillhoite

    (@rwillhoite)

    With IE 6, if you float something, you have to add “display: inline” also. It has a double-margin bug, meaning that it doubles the margin on floated elements. Try adding the following styles to the ul tag in the horizontal navigation area:

    ul {
    float: right;
    display: inline;
    }

    If that doesn’t work, try floating the li elements:

    li {
    float: left;
    display: inline;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Very big problem with IE6 !!’ is closed to new replies.