za_8xijgO
ピン留めのドッグイヤーを消したいが上手くいかん...
https://gyazo.com/901fd544a451e62f513cb8e67dd59f53 ←これ
これだとページ一覧上のカードの内容が全部白くなる
code:css
li.page-list-item > a:nth-child(1) > div:nth-child(2) {
display: none;
}
これだとピン留めページ自体が消える
code:css
.pin {
display: none;
}
仕方ないので今のところ以下のように両方表示
https://gyazo.com/2fc4c72d43640f660c7a880f70f9c4a0
いやできた!
code:css
.page-list-item > a > .pin {
display: none;
}
横着せずちゃんと自分でセレクターをつくった方がいいねsta.icon