[블로그 관리] - [꾸미기] - [스킨 편집] - [html 편집] - [CSS]
1469라인 : 리스트 줄 간격, 글자 크기
- ctrl+F : entry-content ul li
- 변경 : font-size: 0.9375em; ▶ font-size: 1em;
변경 : line-height: 1.5714; ▶ line-height: 2;
▼ 변경 전
.entry-content ul li {
position: relative;
margin-bottom: 10px;
font-size: 0.9375em;
line-height: 1.5714;
color: #666;
list-style: inherit;
}
▼ 변경 후
.entry-content ul li {
position: relative;
margin-bottom: 10px;
font-size: 1em;
line-height: 2;
color: #666;
list-style: inherit;
}
1465라인 : 리스트 아래 공간
- ctrl+F : entry-content ul
- 변경 : margin-bottom: 22px; ▶ margin-bottom: 0px;
▼ 변경 전
.entry-content ul {
list-style: disc;
margin-bottom: 22px;
padding: revert;
}
▼ 변경 후
.entry-content ul {
list-style: disc;
margin-bottom: 0px;
padding: revert;
}
리스트를 변경하고 나니, 기본 텍스트의 글자 크기가 작아보여서 추가로 변경함.
1440라인 : 기본 텍스트 글자 크기
- ctrl+F : entry-content p
- 변경 : font-size: 0.9375em; ▶ font-size: 1em;
▼ 변경 전
.entry-content p {
margin-bottom: 32px;
word-break: break-all;
font-size: 0.9375em;
line-height: 2;
color: #555;
}
▼ 변경 후
.entry-content p {
margin-bottom: 32px;
word-break: break-all;
font-size: 1em;
line-height: 2;
color: #555;
}
반응형
'티스토리 Tistory' 카테고리의 다른 글
[티스토리] 북클럽 스킨 - 사이드바 최근댓글, 태그 없애기 (0) | 2022.02.17 |
---|---|
[티스토리] 구글 애드센스 광고 붙이기 (0) | 2022.02.12 |
[티스토리] 북클럽 스킨 - 포스트 글 리스트 제목 및 내용 줄 변경, 썸네일 크기 변경 (북리뷰) (0) | 2022.02.12 |
[티스토리] 북클럽 스킨 - 헤더 배경색, 글자색 변경 (0) | 2022.02.10 |
댓글