Skip to content Skip to sidebar Skip to footer

Css: Text In Div Is Getting Cut Off

I'm working on integrating a jQuery plugin that hides parts of a page until the user clicks a 'Like Button'. Part of the Facebook widget's text is getting cut off. I've played arou

Solution 1:

the reason is here:

.ui-locker-facebook .fb-like span {
    height: 24px !important;
    overflow: hidden;   /*change to 'visible'*/
}

Post a Comment for "Css: Text In Div Is Getting Cut Off"