Footer is not cooperating and comments box has disappeared

so I have a site http://theuntoldspiral.com/test-post/dfgfdgfd/, I can’t get the footer to cooperate with the various fluid heights of posts, and for some reason that is completely beyond me the comments box has disappeared.

The code is quite long, but you can see what I am talking about with the site. Any help would be appreciated, and I do apologise in advance if the code is messy/unconventional.

Related posts

2 comments

  1. It’s because you have floated elements in your container div. Floated items don’t expand its container. This is a clearfix issue.

    This fixed your page:

    div#content-container:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }
    
  2. here is code, this also work perfectly for your case.

       .outer-wrapper {
          width: 69%;
          display: inline-block;
        }
    

Comments are closed.