Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS float problem in IE, works in FF

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25206
    jlknauff
    Member

    http://www.wildfiremarketinggroup.com/AREA-52/WP/

    Can anyone tell what’s causing the sidebar (.sidebar) to drop to the bottom of the page in IE? It shows up next to the content in FF. The seems to be plenty of room, but I’ve tried changing the size to make sure, and still no luck.

    #59359
    apostrophe
    Participant

    I don’t see any extra padding in there so I’m guessing that the problem is coming from the bullets on the sidebar list. try adding this to your css and see if it makes a difference.

    Code:
    ul {
    list-style: none;
    }
    #59366
    TheDoc
    Member

    Or, add

    list-style-position:inside;

    to keep the bullets.

    #59363
    jlknauff
    Member

    Tried both…neither worked

    #59364
    jlknauff
    Member

    Solved it…had to add an hr below the logo

    #59372
    TheDoc
    Member

    If you’re ever in that situation again, the easiest thing to do is add "border: 1px solid red" to all of the divs in question, much easier to debug! I’m not sure if the <hr> is really what was needed, at least, it shouldn’t be.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.