Facebook Like buttons not displaying when loaded hidden

前端 未结 10 2116
梦毁少年i
梦毁少年i 2020-12-15 04:18

I\'m a bit stuck with this one. I have an article list with snippets that link off to the full article. when you hover over each blurb a bar appears at the bottom of the blu

10条回答
  •  执念已碎
    2020-12-15 04:35

    Instead of setting display: none, try to hide it by using margin-top or z-index. Both of these won't break the FB like button.

    .hide2 {
       margin-top: -1000px !important;
       position: relative ;
       z-index: -1 !important;
    }
    

提交回复
热议问题