Homepage › Community Forums › Optimal Theme Support › Comment section › Reply To: Comment section
Just figured it out……well sort of.
You may have an html error somewhere in your code. If you’ve added a “div” for example and don’t open/close it properly, then it throws other parts of your site off. Example – <div class="example">Here is some same text inside a div container</div> That is the proper way to open and close a div. The same thing goes for all html tags. If you leave one or the other open or closed improperly it usually does things like this to the site.
You can take a look here to see what all errors you have if you’re interested in fixing them all – http://validator.w3.org/check?uri=http%3A%2F%2Fwww.tobyelwin.com%2Fcommunity-persona-for-change-management%2F%23respond&charset=%28detect+automatically%29&doctype=Inline&group=0 …..if not, you could add “clear: both;” to your code around line 2515 in your css –
/* Comments
------------------------------------------------------------ */
#comments,
#respond {
clear: both;
margin: 0 0 15px;
overflow: hidden;
}
That will make the comments appear. The comments are there, but they are being blocked from something, and I’m guessing it’s just an html error somewhere.
Here is the result when I add that code to your site – http://i.imgur.com/xifrRbV.jpg Don’t mind the way the social link on the side looks, it won’t appear that way on your actual site, but as you can see the comments will show up again once you add that line of code.
