티스토리 뷰

IT/Web

My Blog Skin was changed - fotowall

잎푸른 2006. 11. 10. 21:11
블로그 스킨에 태터툴즈 스킨 공모전에서 최우수상을 받은 fotowall 을 적용했습니다.
지금까지 쓰던 tisDairy와 비슷한 레이아웃인데, 각 글마다 내부 내용에 따라서 간격이 변하는 것이 마음에 듭니다.

스킨을 적용하면서 약간의 수정이 있었습니다.
수정한 내용은 다음과 같습니다. (fotowall v1.0.4 티스토리용 기준)
  1. Firefox에서 글 하단의 댓글 개수 부분이 아랫줄로 내려가는 현상을 해결했습니다.


  2. style.css 182번째 줄
    .content_data_bottom_submenu {float:right; color:#252525;padding-top:9px; }
    다음과 같이 수정
    .content_data_bottom_submenu {text-align:right; color:#252525;padding-top:9px; }

  3. 카테고리가 리스트 형식으로 출력되는 것을 원래의 계층형으로 바꿨습니다.


  4. skin.html 593째 줄
    <div class="category">[ ##_category_list_## ]</div>
    다음과 같이 수정 ([ 뒤, ] 앞 공백은제거)
    <div class="category">[ ##_category_## ]</div>

    style.css 306~309번 줄
    .category a:link { text-decoration: none;  padding-left:10px; color: #3b3b3b;}
    .category a:active {text-decoration: none; padding-left:10px; color: #3b3b3b;}
    .category a:visited { text-decoration: none; padding-left:10px; color: #3b3b3b;}
    .category a:hover { text-decoration: underline;padding-left:10px; color: #3b3b3b;}
    다음과 같이 수정
    .category a:link { text-decoration: none; color: #3b3b3b;}
    .category a:active {text-decoration: none; color: #3b3b3b;}
    .category a:visited { text-decoration: none; color: #3b3b3b;}
    .category a:hover { text-decoration: underline; color: #3b3b3b;}


아직 해결하지 못한 문제는 다음과 같습니다.
  • 페이지 표시부분에 현재 페이지가 제대로 표시되지 않음



  • 페이지 로딩 중 글이 박스 영역 아래쪽 밖으로 나가는 현상이 가끔씩 랜덤하게 발생


댓글