본문 바로가기

Blogging

구글 블로그 걸리적거리는 스크롤 헤더 고정시키기

스크롤 할 때마다 자꾸 거슬리게 튀어나오는 상단 헤더를 고정하려면 아래의 코드를 CSS에 추가하면 된다.

/* Delete Sticky Header */

.centered-top-container.sticky > .centered-top {
  display: none;
}

body.collapsed-header .sidebar-container { /* ※ 블로그 테마가 Contempo인 경우 추가 */
  z-index: 32;
}

 

출처 : https://joshua-dev-story.blogspot.com/2020/04/blogger-remove-sticky-header.html

 

2022. 3. 13.