Ghost 블로그 기본 서체를 나눔바른고딕으로 변경하기

김재동 • January 21, 2016

ghost

Ghost 블로그 프로그램 업데이트를 하면서 기본 테마인 casper도 함께 하면 css에 수동으로 지정해 둔 값들이 사라지기 마련이다. 매번 css를 변경하는 것은 불편해서 조금 검색을 해보니 code injection을 통해 간단히 기본 서체를 바꿀 수 있는 방법이 있었다. 방법은 다음과 같다.

관리자 화면에서 Code Injection에 들어간 후 헤더 부분에 아래 코드를 추가한다.

<link href='//cdn.jsdelivr.net/font-nanum/1.0/nanumbarungothic/nanumbarungothic.css' rel='stylesheet' type='text/css'>
<style>
body,
h1, h2, h3, h4, h5, h6,
.main-nav a,
.subscribe-button,
.page-title,
.post-meta,
.read-next-story .post:before,
.pagination, .page-description,
.site-footer,
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "Open Sans", "Nanum Barun Gothic", sans-serif, casper-icons; /* Replace with your own font */
}
</style>

참고 : http://support.ghost.org/how-to-customize-casper/