2016-10-28 16 views

答えて

1

サイトはCSS擬似コードを使用しています。 〜のように:beforeと:after。これは、タグの先頭と末尾に焦点を当てた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; 
} 

あなたのスタイルシートに以下の行を追加します。

関連する問題