• Ok well i’ve gone through my code a few times and still can’t find out what would make my sidebar not float in IE. It works fine in Firefox, execpt that the width of the sidebar div has to be 160px or else it will text-wrap to the next line which isn’t what i want. This is the only thing i could think of that could be affecting it in IE. Does anyone know how i can specify a smaller width with out the text-wraping in hopes this will fix my problem?

    url: https://chadwick.byethost24.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m not sure but you could try putting >
    display: inline
    in your sidebar div (in your css file)

    IE really sucks but most of my readers use it ??

    Thread Starter Chadwick

    (@chadwick)

    no that didn’t work. :S

    Try changing

    #content > #sidebar {
    margin: 0px 20px 0px 10px;
    float:right;
    display:inline;
    color:#fff;
    list-style-type:none;

    to

    #sidebar {
    margin: 0px 20px 0px 10px;
    float:right;
    display:inline;
    color:#fff;
    list-style-type:none;

    And the same with #content > #sidebar ul li

    and #content > #sidebar >

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘IE sidebar floating problems’ is closed to new replies.