게시판 유형들이 화면에 꽉차게 보여요....
관련링크
본문
달력이이 사진에 보여지는거처럼 꽉차게 보입니다. 다른 게시판들도 그렇구요 수정을 해야할거 같은데 어디서 어떤 코드를 수정해야할지 모르겠습니다....
이페이지 처럼 보여져야하는데...
답변 3
/theme/basic/css/common.css line 575
.sub_btit { text-align: center; margin-top: 10rem; margin-bottom: 7rem; }
=>
.sub_btit { width:800px;margin: 0 auto;text-align: center; margin-top: 10rem; margin-bottom: 7rem; }
/theme/basic/skin/board/190724schedule+v1.4/list.skin.php line 49
<div id="bo_list" style="width:<?php echo $width; ?>">
=>
<div id="bo_list" style="width:800px;margin:0 auto">
html
...
<!-- <div id="bo_list" style="width:100%"> -->
<div id="bo_list">
...
css
#bo_list {
margin: auto;
width: 80%;
}
반응형 이라서 월래그래요 ;;; 만약에 pc에서는 화면을 다르게 보게 하고싶다면 css 에서 수정해주면됩니다. 사이즈에 맞게요
답변을 작성하시기 전에 로그인 해주세요.