2016-12-26 46 views
-2

我正面臨社交媒體小部件(側欄)的問題,因爲它在帖子頁面上工作正常,但在主頁上無法正常工作。社交媒體小部件的一些CSS或JS問題

請檢查演示

帖子頁:www.goo.gl/BJOJ34

首頁:www.goo.gl/p42S9F

更多信息,請讓我知道。

感謝

+1

你到目前爲止嘗試過嗎?添加代碼 –

回答

0

缺少CSS所以寫上您的索引或張貼頁面的CSS和檢查。下面的CSS適用於facebook按鈕。從您的these-10-startups-won-singapore-central.html頁面複製CSS並粘貼在index.htmlpost page上。

.smart-connect .follow_blog .btn_fb 
{ 
    background: #3a579a; 
} 

.smart-connect .follow_blog ul li 
{ 
    list-style: none; 
    list-style-type: none; 
    padding: 0; 
    margin: 3px 5px 0; 
    width: 50%; 
    max-width: 165px; 
    display: inline-block; 
    font-family: 'Raleway', sans-serif; 
    font-size: 12px; 
    font-weight: 500; 
    overflow: hidden; 
    text-align: center; 
    height: 32px; 
    line-height: 32px; 
    color: #fff; 
    transition: all .4s; 
    border-radius: 3px; 
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
} 
+0

感謝兄弟的幫助 – Dev