Search code examples
buttonpopupfacebook-like

Facebook like button expands downwards through no-overflow page


Is there any way to make the like button expand upwards instead of downwards, as on my page http://frc1410.org the like button is placed in a footer, and I would love to have it either expand upwards, or push the entire footer up so it is visible. Thanks in advance!


Solution

  • You could edit the CSS for the class pluginCommentFlyoutFull. The top property for that class could be set to a negative value. You will also need to do that for other HTML elements in the like button fly out. You also will need to do some z-index to have it appear over your main content wrapper.

    .pluginCommentFlyoutFull { width: 450px; top: -157px; }