묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
푸터가 콘텐츠영역을 침범합니다
2016.01.21 03:02
댓글 3
-
배워서남준다
2016.01.21 10:40
-
DoorWeb
2016.01.21 13:28
정확히는
#content 안에 불러오는 위젯이 float:left가 되어있어서
#content 가 공간인식을 못해서 그렇습니다.
이럴때 해결방식은
#content {position:relative;*zoom:1}
#content:after{content:"";display:block;clear:both}를 넣어서
#content 안에 태그가 float:left;가 되더라도 공간확보를 할 수 있게 해 주셔야 합니다.
-
시니시즘
2016.01.21 14:34
클리어픽스(clearfix)의 개념과 방법
https://www.xpressengine.com/tip/22785442
제가 쓴 글을 한번 읽어보시기 바랍니다.
css 파일에서 #content 또는 #footer 찾아서 둘중 하나에 아래 구문 추가해 보세요.
#content {
... 중략...
display: inline-block;
}
아니면...
#footer {
... 중략...
display: inline-block;
}