default.css에서 width 1000으로 변경해도 변경 안 되는 이유가 뭔가요?
본문
레이아웃 변경하려고 default.css에서 width를 다 1000으로 변경했는데요.
사진처럼 자꾸 삐져나가구요.
전체 레이아웃은 970*915 설정을 유지하네요.
어디서 해결해야하나요?
답변 3
해당 사이트 url을 남겨주시면 해결이 빠를거같습니다.
#container_wr {z-index:5;margin:0 auto;width:1200px;height:100%;;zoom:1}
#aside {float:right;width:305px;padding:0;background: #e7ebf3;height: 100%;border: 1px solid#adbfd2;;margin:20px 0 20px 20px}
#container {z-index:4;position:relative;float:left;min-height:500px;height:auto !important;margin:20px 0;height:500px;font-size:1em;width:875px;zoom:1}
위와같이 #container_wr에서 옆사이드와 컨테이너의 합산 넓이값이 지정되어있을겁니다.
그부분을 컨테이너+사이드 값으로 수정하셔야 나오지않을까요?
만약 .row 부분이 #container_wr 이라면 패딩값을 확인하셔야할듯합니다.
css코드를 보지않고서는 정확한 문제를 찾을수 없을듯하네요 수정내용을 모르니..
/* 중간 레이아웃 */
#wrapper{}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {z-index:5;margin:0 auto;width:1000px;height:100%;;zoom:1}
#aside {display: none;}
#container {z-index:4;position:relative;float:left;min-height:500px;height:auto !important;margin:20px 0;height:500px;font-size:1em;width:975px;zoom:1}
이렇게 수정하시면 1000 으로 되지않을까요?