Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a site that includes facebook 'like' buttons (see http://www.rupertheath.com) and they work except, when you click them, no comment box appears. When I first installed the buttons, the comment box did appear but I've spent some time styling the buttons (for positioning) and seem to have stopped that functionality working.

Can anyone explain why?

share|improve this question

1 Answer

up vote 1 down vote accepted

Problem is, you set overflow: hidden on a parent container:

<div class="socialmediabuttons">
    ....
</div>

Remove that style and the comment box should reappear. Note that you need to change other styles as well as it will break the hairlines around the social media buttons (but it is doable).

EDIT

Try something along the lines of:

.socialmediabuttons {
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
+   height: 26px;
    margin-bottom: 25px !important;
    margin-left: 20px;
-   overflow: hidden;
    padding: 5px 0 3px;
}
share|improve this answer
You got it! I was trying to clear floats but that doesn't appear to be needed. Thanks so much for your help. – Perkin5 Jan 21 at 22:57
You're welcome and please consider accepting the answer (this indicates to others that your problem is solved). – aefxx Jan 22 at 9:38
Answer accepted and problem solved! – Perkin5 Jan 22 at 16:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.