본문 바로가기
컴퓨터/인터넷

티스토리 리스트 폰트 크기 변경

by Begi 2022. 9. 17.
반응형

티스토리에서 리스트 폰트 크기를 변경하려면 CSS를 편집해야 한다.

 

관리 페이지의 CSS 편집에서 ul li와 ol li의 2군데 font-size를 변경하여 블로그 전체의 리스트 폰트가 변경된다.

 

초기 0.9375에서 0.8375 정도로 변경하면 리스트 폰트 크기가 줄어든다.

 

 

.entry-content ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 0.9375em;
  line-height: 1.5714;
  color: #666;
  list-style: inherit;
}
.entry-content ol {
  list-style: decimal inside;
  margin-bottom: 22px;
}
.entry-content ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: 0.9375em;
  line-height: 1.5714;
  color: #666;
  text-indent: -15px;
  list-style: inherit;
}

 

반응형

댓글