이게 왜 이럴까요?
관련링크
본문
오른쪽 편에 보시면 게시물 무작위 추출이랑 최근 등록된 게시물이 겹쳤는데요. 최근 등록된 코멘트도요.
왜 이럴까요? 다른데서 보면 괜찮은데 https://www.simsimhalddae.com/fun/index_all.php 에서만 그렇네요.
답변 3
/theme/basic/skin/latest/basic/style.css 파일에서 여기 수정
.lt {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:354px;min-height:150px;border-bottom:1px solid #e9e9e9}
아니면 제대로 하려면 랜덤 스킨 style.css 파일에서 여기서 충돌나지 않게 네임을 바꿔야 합니다.
.lt2 등으로..
.lt2 {position:relative;float:left;margin-bottom:20px;padding-bottom:10px;width:210px;border-bottom:1px solid #e9e9e9}
.lt2 ul {margin:0 0 10px;padding:0;list-style:none}
.lt2 li {padding:3px 0}
.lt2 .lt_title {display:block;padding:10px 0 8px}
.........
........
그리고 랜덤 스킨 출력 부분 여기도 바꿔야겠죠.
<div class="lt2">
말씀하신 곳들이 <div class="lt"> 와 같은 구조로 되어있습니다.
해당 lt 클래스에 적용된 스타일링이 좌측용으로 제작되셨던 거 같은데,
우측에도 넣으시면서 다 틀어지는 거죠.
<div class="lt" style="width:auto;float:none;height:auto"> 를 넣어보세요.
대충 자리잡음이 될겁니다.
휴 lt2 로 바꿨는데 안되길래 lt222 로 바꿨습니다. 그러니까 되네요. 두분다 감사드립니다.