2016-10-28 83 views

回答

1

該網站使用的CSS Pseudocodes。如:之前和之後。這是一個CSS屬性,專注於標籤的開始和結束。例如在網站上。

#jp-relatedposts h3.jp-relatedposts-headline em:before{ 
    content: ""; 
    display: block; 
    width: 100%; 
    min-width: 30px; 
    border-top: 1px solid #ddd; 
    border-top: 1px solid rgba(0,0,0,.2); 
    margin-bottom: 1em; 
} 

刪除該行。只要刪除Border top style或使其display none。希望我對你談論的問題是正確的。

#jp-relatedposts h3.jp-relatedposts-headline em:before{ 
    content: ""; 
    display: none; 
    width: 100%; 
    min-width: 30px; 
    margin-bottom: 1em; 
} 
2
.blog .hentry, .archive .hentry, .single-post .hentry { 
    border-bottom: 0px !important; 
} 

#jp-relatedposts h3.jp-relatedposts-headline em:before { 
    border-top: 0px !important; 
} 

這些行添加到您的樣式表。