묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
footer 질문입니다!!!
2014.02.16 13:09
css에서 footer 너비를 수정해서 사용중입니다.
그런데 전체화면에서는 몰랐는데 창을 줄이면 footer 너비도 같이 줄여져서 전체적으로 밸런스가 안맞습니다.
여러가지 코드들 다 써봤는데 도저히 답을 못찾겠어서 여쭤봅니다. 현재 제가 사용하고 있는 코드는
/* Footer */
.footer{padding:0 0 0 0; background:#c7c7c7;border-top:1px solid #f4f4f4;color:#666}
.footer p{font-size:12px}
.footer{width:70%}
.footer{margin:0 0 0 250px}
.footer a{text-decoration:none;color:#666}
.footer a:hover,
.footer a:focus{text-decoration:none}
이거이며,
전체화면이었을 때 메뉴 너비와 footer 너비가 일치합니다. 그런데
창 크기를 조절하면 저런 식으로 너비가 일치하지 않게됩니다. 어떻게 해야 할까요? ㅜㅜ
.footer{width:70%} 얘를 메뉴너비와 동일하게 잡으셔야할 것 같아요. footer 가 어느 div 에 위치하고 있는지 제가 알 수 없어 답변하기가 좀 힘들지만 두 경우를 생각해볼때
(1) <div class="전체"> <div class="메뉴"></div><div class="footer"></div></div>
이런 식이라면 width 에 100%를 주시고
(2) <div class="전체"> <div class="메뉴"></div></div><div class="footer"></div>
이런 식이라면 css .전체에 width 가 있다면 그 고정픽셀값을, .메뉴에 width가 있다면 그 값을
footer 의 width 값에 주시는겁니다!