묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
왼쪽에 로고를 넣었고 오른쪽이 게시판입니다
레이아웃 CSS에서
/* Site Layout - Column Right */
#columnRight { width:660px; float:right; overflow:hidden; background:#FFFFFF; z-index:1;}
#visualArea { width:600px; height:200px; background:#000000; margin-bottom:2.5em; position:relative; z-index:2;}
#content { width:600px; overflow:hidden;}
이렇게 작성중이지만
visualArea부분이 Right의 컨텐츠 부분아닌가요?
하고 싶은건 그림에서도 보이시다 시피 너무 딱붙어서요
배경을 흰색으로 양옆에 여유를 주고 싶은게 마음입니다
어떻게 소스 수정을 해야할까요?
columnRight의 빈공간을 넓히는법을 알고 싶습니다
2008.04.18 03:03
왼쪽에 로고를 넣었고 오른쪽이 게시판입니다
레이아웃 CSS에서
/* Site Layout - Column Right */
#columnRight { width:660px; float:right; overflow:hidden; background:#FFFFFF; z-index:1;}
#visualArea { width:600px; height:200px; background:#000000; margin-bottom:2.5em; position:relative; z-index:2;}
#content { width:600px; overflow:hidden;}
이렇게 작성중이지만
visualArea부분이 Right의 컨텐츠 부분아닌가요?
하고 싶은건 그림에서도 보이시다 시피 너무 딱붙어서요
배경을 흰색으로 양옆에 여유를 주고 싶은게 마음입니다
어떻게 소스 수정을 해야할까요?
댓글 3
-
ekinplus
2008.04.18 03:30
-
Capyou
2008.04.18 07:57
width:700px; 이런식으로 이드값을 설정해보세요~ -
정지원405
2008.04.19 01:45
아아 패딩값이 도움이 되었네요 두분다 감사합니당 ^^
#columnRight { padding: 0 4px 0 6px; width:660px; float:right; overflow:hidden; background:#FFFFFF; z-index:1;}
붉은색부분 추가해보세요... padding 이 주는 값순서는 상 /우 /하 /좌입니다. 4와 6의 값을 수정하면서 해보세요...