1 min read

Ghost cms 블로그 폰트 변경 (리디바탕체)

폰트를 '리디바탕'으로 바꾸고 싶어 찾아본 유튜브 영상입니다.
Dawn 테마를 이용 중인데 적용이 안 되어 chatgpt와 씨름하여 얻은 css를 공유합니다.

<style>
@font-face {
    font-family: 'RIDIBatang';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body, html, * {
    font-family: 'RIDIBatang' !important;
}

/* Ensuring specific elements also inherit the font */
.gh-content > blockquote:not([class]), 
.gh-content > dl, 
.gh-content > ol, 
.gh-content > p, 
.gh-content > ul {
    font-family: 'RIDIBatang' !important;
    font-size: 1.9rem;
    line-height: 1.6em;
}

.adsbygoogle.pl {
    display: inline-block;
    width: 100%;
    height: 90px;
    padding-bottom: 15px;
}

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,
.main-nav,
.header,
.footer,
.sidebar,
.widget,
.menu,
.menu-item,
nav,
.button,
input,
textarea,
select,
label {
    font-family: 'RIDIBatang' !important;
}

</style>

code injection의 site header에 붙여 넣으시면 됩니다.
아무쪼록 즐거운 블로그 생활 되세요~