Woooniverse

티스토리 달력 넣기 본문

Woo宙 일상/잡다구리

티스토리 달력 넣기

Woo宙 2020. 4. 11. 19:19

블로그에 내가 한달에 얼만큼의 글을 올리는 지 알아보고 싶어 달력을 추가하고 싶어졌다.

그런데 달력 모듈을 기본지원을 안하네?!

구글에 쳐보니 내가 html을 수정해야 된다.

html을 한번도 만져본적이 없지만 구글이 있기에 호기롭게 나섰다.

 

역시나 있다!

https://tistory.noo9ya.com/67

 

Section 23 - 티스토리 반응형 스킨 만들기 - [사이드바] 달력

이번 시간에는 "사이드바 달력" 모듈입니다. 제 경험상 티스토리 블로그에 달력을 노출하는 사람은 많이 못 봤지만 그래도 없는것보단 있는게 낫지 않을까 싶어서 달력도 만들어 보도록하겠습니다. 달력은 그냥 우..

tistory.noo9ya.com

 

블로그 꼭대기에 왕 큰 달력 몇 번 넣는 등 삽질을 한 시간 정도 하다 구석에 이쁘게 넣기에 성공했다. 

html 구조에 익숙하지 않은 나같은 사람들을 위해 글을 남긴다.

핵심은 

<s_sidebar_element> ~~ </s_sidebar_element>

를  <s_sidebar>~~ </s_sidebar> 사이에 넣으면 된다. 이걸 모르고 여기 저기 넣어보다 한 시간이 흘렀다.

<div class="sidebar-1">
					
<s_sidebar>
	<s_sidebar_element>
    <!-- 달력 -->
    	<div class=" calendar">
        <h2 class="sr-only">CALENDAR</h2>
        
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
</div> </s_sidebar_element> <s_sidebar_element> <!-- 카테고리 --> <nav class="category"> </nav> </s_sidebar_element> </s_sidebar> </div>

이 단계가 끝나면 

블로그 관리 -> 꾸미기 -> 사이드바에 들어가 달력 모듈의 위치를 원하는 곳에 넣는다. 

 

마지막으로 달력의 모양을 이쁘게, 달력 날짜를 누르면 그 날짜 글을 보여주는 기능을 추가하기 위해 

스킨편집에서 CSS를 들어가 제일 마지막에 이 코드를 추가한다.

(찍었는데 성공했다!.)

 

/* calendar */
.calendar {}
.calendar .tt-calendar {}
.calendar .tt-calendar caption {font-size:1em}
.calendar .tt-calendar caption a:first-child, .calendar .tt-calendar caption a:last-child {color:#999; font-size:0.375em}
.calendar .tt-calendar caption a {vertical-align:middle}
.calendar .tt-calendar th, .calendar .tt-calendar td {padding:5px 0; text-align:center}
.calendar .tt-calendar th {font-size:0.875em; font-weight:normal}
.calendar .tt-calendar td {font-size:0.75em; color:#bbb}
.calendar .tt-calendar .cal_current_week {background:#f5f5f5}
.calendar .tt-calendar .cal_week2, .calendar .tt-calendar .cal_day_sunday {color:red}
.calendar .tt-calendar td a {display:inline-block; padding:2px 8px; background:#ff8149; color:#fff; border-radius:30px;}
.calendar .tt-calendar .cal_day4 {background:#333; color:#fff}
.calendar .tt-calendar .cal_day4 a {background:#333}


출처: https://tistory.noo9ya.com/67 [누구야 티스토리]

'Woo宙 일상 > 잡다구리' 카테고리의 다른 글

ti nspire 2 cas 계산기 사용법.  (0) 2020.06.10
icecream sundae.  (0) 2020.05.07
나무공예  (0) 2020.04.10
ㄱ..귀..귀엽다...!  (0) 2020.04.02
내방에 만들래  (0) 2020.03.19
Comments