-1
我的網站上每篇博文的底部都有兩條灰線(主索引也是1)如何識別這個元素?
我找不到這些使用「檢查」功能 - 我該如何刪除它們?
例如後:
http://nickgray.net/curb-your-dog/
我的網站上每篇博文的底部都有兩條灰線(主索引也是1)如何識別這個元素?
我找不到這些使用「檢查」功能 - 我該如何刪除它們?
例如後:
http://nickgray.net/curb-your-dog/
該網站使用的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;
}
.blog .hentry, .archive .hentry, .single-post .hentry {
border-bottom: 0px !important;
}
#jp-relatedposts h3.jp-relatedposts-headline em:before {
border-top: 0px !important;
}
這些行添加到您的樣式表。