- hELLO 스킨 게시글 제목 스타일 Customizing 하기
hELLO 스킨이 업데이트 된 후, 제목2의 스타일이 아래와 같이 고정되었다.
타이틀을 [제목2 + 본명조]로 설정하던 나로써는 속상한 일이였다.
제목2로 지정될 경우 전처리 되어 렌더링 되는 거 같아서 기존 쓰던 양식을 그대로 JavaScript로 덮어씌어주었다.
// h3 스타일 지정
window.onload = function() {
document.querySelectorAll('#content h3').forEach(item => {
item.style = "font-family: 'Noto Serif KR'; font-weight: bolder;";
item.querySelector('a').style = "color: #953b34;";
})
}