Hi there,

I have a facebook "Like" button on the first sidebar, and when it's clicked and the comment window appears, it's only shown part of it as it's overlapped by the content and even block below (see pic).

Any idea of what is going on?

Manuel

CommentFileSizeAuthor
Captura.PNG13.36 KBmanoloka

Comments

ajross’s picture

Status: Active » Postponed (maintainer needs more info)

The base theme has overflow out of regions hidden, and that probably causes it. The CSS you need to override is likely this:

.row, .nested, .block {
    overflow: hidden;
}

switching it to overflow: visible. You may want to be specific and only reset it for the region you're working in. But there may not be any bad consequences to just overriding it across the board. Just depends on your site.

ajross’s picture

Issue summary: View changes
Status: Postponed (maintainer needs more info) » Closed (works as designed)