설치후 메인화면에서 왼쪽메뉴 사용하고 싶은데 어떻게 해야 하나요?
본문
설치후 메인화면에서 왼쪽메뉴 사용하고 싶은데 어떻게 해야 하나요?
어떤파일 수정해야 밑에처럼 왼쪽에 메뉴가 보이게 수정할수 있는지 궁금합니다.
어렵네요.. ㅜㅜ
고수님들 부탁드려요..
![]()
답변 3
/css/default.css
화일안에
#aside {float:right;
#aside {float:left;
이렇게 빨간색 right 부분을 파란색 left로 바꿔보세요.
그런데 세로선이 오른쪽에 2픽셀로 나타나는데 그건 찾아서 왼쪽으로 옮기시고요.
답변감사합니다.
저는 왼쪽 오른쪽 모두 사용하고 싶은데 검은아이님이 알려주신 방법으로 가능할까요?
위 검은아이님의 답변을 참조하세요...
default.css화일을 열면
/* 중간 레이아웃 */
#container_title {margin-bottom:20px;font-size:1.2em;font-weight:bold}
#wrapper:after {display:block;visibility:hidden;clear:both;content:""}
#aside {float:right;margin:0 0 0 -1px;width:210px;border-left:1px solid #dde4e9;background:#fff}
#container {z-index:4;position:relative;float:left;padding:15px 16px 15px 15px;width:728px;min-height:500px;height:auto !important;height:500px;border-right:1px solid #dde4e9;background:#fff;font-size:1em;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {margin-bottom:20px;font-size:1.2em;font-weight:bold}
이런 부분이 있습니다.
위 빨간 부분 right를 left로
세로 줄은 border와 관련이 있습니다. 파란색 부분을 수정하세요. 마찬가지로 border-left는 border-right로, border-right는 border-left로 수정하시면 될 것 같네요