티스토리 뷰

원본 : here

상단여백을 없애는 것은
style.css를 열어서 아래를 찾은 후

/* 반드시 들어가야하는 스타일 끝 - 이 아래는 자유롭게 추가, 삭제 가능 */
body {
font-family: Verdana, AppleGothic, Sans-serif, Dotum;
padding:20px 0;
background-color: white;
color:black;
}

padding:20px 0;을 padding:0px 0;로 바구시면 될 것 같고

좌측으로 붙이는 문제는

/* Structured */
#container {
width:880px;
margin:0 auto;
padding:20px;

를 찾으셔서 float:left;를 추가로 삽입하여 주시면 될 것 같네요..

--------------------------------
*simple_bko 스킨 수정 방법 : here