Forums

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

Home Forums CSS ok, last help needed for this issue

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #40866
    cm123077
    Participant

    Here is the page: http://174.120.16.66/~thomasse/meet-the-team/

    The issue: The bios are supposed to all be inside their div container, but they are not. I have played with the div tags, css, etc, and I can get it to work with the first 2, but the third one and fourth completely break it.

    Can someone please help me resolve this?

    Thanks

    #114684
    TheDoc
    Member

    Add `class=”clearfix”` to each of the bios.

    #114686
    cm123077
    Participant

    That messed up the first bio, and did nothing to the others. I added it to #bio-content

    #114687
    Senff
    Participant

    ….Because you still didn’t close all DIVs properly.

    #114688
    cm123077
    Participant

    they are closed now, I believe. I am sorry about all the confusion, I am just frustrated after messing with this all day.

    #114689
    JohnMotylJr
    Participant

    @cm123077 : If you are floating content around an image, than you need to clear the content underneath, not the div itself. Like TheDoc had mentioned you need to add class='clearfix' to the elements that are underneath the floating elements.

    .clearfix {
    clear:both;
    }
    #114690
    Senff
    Participant

    EDIT: nevermind. DIVs still not properly closed.

    #114692
    cm123077
    Participant

    thank you everyone…it works

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