goodthings4me.tistory.com
■ 워드프레스 설치 후 글꼴이 마음에 안들 때 워드프레스의 테마디자인에서 css를 변경해주거나 폰트 플러그인을 설치해서 설정해주면 원하는 폰트로 변경할 수 있다.
CSS 코드 추가 위치 : 테마 디자인 >> 사용자 정의하기 >> 추가 CSS
추가할 CSS 코드는
@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
h1, h2, h3, h4, h5, h6, li, p, span, label, input { font-family: ‘Nanum Gothic’,
Apple SD Gothic Neo, Malgun Gothic, arial, sans-serif; }
#kboard-default-document .kboard-title h1,
#kboard-default-document .kboard-detail,
#kboard-default-document .kboard-content,
#kboard-default-document .kboard-button-like,
#kboard-default-document .kboard-button-print,
#kboard-default-document .kboard-control a { font-family: ‘Nanum Gothic’, Apple SD Gothic Neo,
Malgun Gothic, arial, sans-serif; }
* { font-family: ‘Nanum Gothic’,Apple SD Gothic Neo,Malgun Gothic,arial,sans-serif; }
플러그인 WP Google Fonts 설치 후 설정은
전체가 아닌 일부 Elements에게만 폰트 적용을 할 경우,
Custom CSS(optional): 에 다음을 추가한다.
@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
h1, h2, h3, h4, h5, h6, li, p, span, label, input { font-family: ‘Nanum Gothic’; }
'IT(Tip)' 카테고리의 다른 글
웹 페이지 꾸미기 - CSS3 스타일 속성 정리 #2(가시 속성 display, visibility, opacity) (0) | 2020.09.24 |
---|---|
웹 페이지 꾸미기 - CSS3 스타일 속성 정리 #1(스타일 우선순위, 크기/색상/URL 단위) (0) | 2020.09.23 |
Visual Studio Code 탐색기에 프로젝트 폴더를 2개 이상 여는 방법 (0) | 2020.09.07 |
파이썬 아나콘다(Anaconda) 업데이트 하기 (0) | 2020.09.07 |
[python] 아나콘다(Anaconda) 가상환경 생성, 업데이트, 삭제하기 (0) | 2020.09.01 |
댓글