お世話になっております。
見出し25(hh25)のボーダー色の変更方法ですが、以下のCSSをダッシュボードの[外観]⇒[カスタマイズ]⇒[追加CSS]、もしくは追加CSSに貼り付けるだけでOKです。
/* 上下の線の色 */
#inner-content .hh25 {
border-color: #色コード;
}
/* 左右の線の色 */
#inner-content .hh25:before,
#inner-content .hh25:after {
background: #色コード;
}
よろしくお願いします。
見出し25の線の色変更解決しました!
ありがとうございました^^
WordPressテーマSANGOの質問
見出しの『25線と線が交差する見出し』で右側だけ色が変わらない
サルカワさん、こんにちは!
https://saruwakakun.com/sango/headlines
こちらを参考に色の変更をしようと思っています。
見出し25線と線が交差する見出しなのですが
#main .entry-content .hh25 {
position: relative;
padding: 0.25em 1em;
border-top: solid 2px #92c4ef;
border-bottom: solid 2px #92c4ef;
}
#main .entry-content .hh25:before, hh25:after {
content: ”;
position: absolute;
top: -7px;
width: 2px;
height: -webkit-calc(100% + 14px);
height: calc(100% + 14px);
background-color: #92c4ef;
}
#main .entry-content .hh25:before {
left: 7px;
}
#main .entry-content .hh25:after {
right: 7px;
}
このようにCSSに追加したのですが
右側の縦線だけ色が変わりません。
どう追加すればよいのかご教授お願いしますm(_ _)m