The titles on the details page don’t have links, so this will do:
.entry-title { font-weight: 900; }
In Archives, however, they are linked, so your specification should work there – I just don’t see it in the source code. Where did you insert it?
As you said, I modified the css using ‘Additional css’, but there is no change.
I see the code in the source code of the page. Currently you have the following there:
blockquote { margin-left: 0px; !important; /*you can adjust this number*/} //인용구의 앞부분 공백 제거해주는 코드#wpdcom .wpd-form-row div.wc_email-wrapper { display: none !important; } //댓글에서 이메일 기입란 제거해주는 코드.entry-title { font-weight: 900; !important; }
My recommendation would be to do without the special characters for once. Maybe the browser chokes on them when interpreting the code. Just write:
blockquote {
margin-left: 0px; !important;
}
#wpdcom .wpd-form-row div.wc_email-wrapper {
display: none !important;
}
.entry-title { font-weight: 900; !important; }
That’s all.
As you said, I modified the css using ‘Additional css’
and at ‘post page‘ I can see the change the font-weight
but at ‘main page‘ I can’t see the change the font-weight
and I want to change h2, h3, h4 font-weight too
-
This reply was modified 3 years ago by
boogoreu.