0

Why is the like box bottom being cut when I set a custom height? It just cuts the faces and its lower part isn't shown.

How can i fix it?

Thanks

2 Answers2

0

If I understand your correction properly, this would be because you're not setting the height of the contents of the box, but rather the box itself.

<div height="x">

doesn't care about what's in the div, it makes the div only show x amount of it.

demize
  • 364
  • 1
  • 15
0

I was having the same issue and added these to my CSS

.fb-like span {
    height: auto !important;
}

.fb-like iframe {
    position: relative !important;
}