Forums

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

Home Forums CSS NEED HELP QUICK!

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #35120
    Jon_N
    Participant

    I can’t figure out why the comment box is so huge and why it keeps covering the jpeg above. Any suggestions?

    click here for example

    #90470
    Jon_N
    Participant
    #90471
    TheDoc
    Member

    It doesn’t have a width assigned to it, so it’s taking up all of the available space. Since your image is being floated to the left, it is taken out of the flow of the document, so your comment box has nothing to butt up against – hence it being full width.

    #90472
    tmette
    Member

    Try adding a “clear:both” to the comment box and just set a specified width.

    #90473
    Johnnyb
    Member

    Just adding ‘float: right’ to the comments-wrap like so will fix it:

    #content #comments-wrap {
    padding-top: 10px;
    float: right;
    }

    This is located on line 485 of your style.css

    #90519
    Jon_N
    Participant

    Thanks Johnnyb that worked, you’re the man.

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