2013-04-02 44 views
0

我在這裏有一些問題。Facebook Like按鈕貼到牆上的文章

Facebook的喜歡我的網頁上的按鈕時,他們就喜歡按鈕點擊,他們將有一個覆蓋彈出窗口說將它張貼在牆上和正常的應該是這樣的

enter image description here

但我點擊它後,我不能點擊或做任何事情。

enter image description here

我不知道如何解決這個問題,因爲我不知道這是代碼的問題,或者是頁面的佈局。

<li><div class="fb-like" data-href="<?php the_permalink(); ?>" data-send="false" data-layout="box_count" data-width="55" data-show-faces="false"></div></li> 

回答

1

我實際上是通過使用這些固定的。

.fb_iframe_widget_lift { 
    z-index: 1; 
} 

.entry { 
    line-height: 1.5; 
} 

.content iframe { 
    max-width: 1200%; 
} 

.entry p { 
    padding-top: 1em; 
    padding-bottom: 1em; 
} 

.entry img { 
    max-width: 100%; 
} 

.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 { 
    margin-bottom: 15px; 
    line-height: 1em; 
    font-family: Helvetica; 
    font-weight: normal; 
} 
1

Firebug的檢查您的網頁,發現Facebook的覆蓋件,並檢查是否改變這個元素的z-index將修復它。如果是,只需將規則添加到您自己的CSS中,並使用!important屬性。幾個月前我曾遇到過這類問題,它對我來說工作得很好。