답변 2개
에디터로 올릴때 소스보기해서 class를 준다음에 해당화면에서 css로 width :100% 를 주시는 방법이 있고
에디터로 올릴때 페이지 크기에 맞춤(width : 100%)로 올린다음에
board_head.php 에서
// 게시판 관리의 상단 내용 if (G5_IS_MOBILE) { // 모바일의 경우 설정을 따르지 않는다. include_once(G5_BBS_PATH.'/_head.php'); //echo html_purifier(stripslashes($board['bo_mobile_content_head']));
echo $board['bo_mobile_content_head']; } else { if(is_include_path_check($board['bo_include_head'])) { //파일경로 체크 @include ($board['bo_include_head']); } else { //파일경로가 올바르지 않으면 기본파일을 가져옴 include_once(G5_BBS_PATH.'/_head.php'); } //echo html_purifier(stripslashes($board['bo_content_head'])); echo $board['bo_content_head']; } ?>
이렇게 보여주는 방법도 있습니다. 럭키후님말씀대로 리사이징처리는 따로 해줘야할것 같습니다.
저라면 전자(class 준다음에 css 추가해주는것)로 할것같습니다.
후자로 하는게 더 편하긴 하겠네요 (board_head.php)코드 수정
전자는 list랑 view 랑 수정해줘야하니..
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인