게시판 상단 내용에 추가한 이미지 가로 100% 설정하기
스마트
0
3209
2021.02.17 18:16
게시판 상단 내용에 추가한 이미지 가로 100% 설정하기
bbs/board_head.php
echo html_purifier(stripslashes($board['bo_mobile_content_head']));
수정
echo "<div class='board_hd_con'>".html_purifier(stripslashes($board['bo_mobile_content_head']))."</div>";
echo html_purifier(stripslashes($board['bo_content_head']));
수정
echo "<div class='board_hd_con'>".html_purifier(stripslashes($board['bo_content_head']))."</div>";
board/list/list.css + css/default.css, mobile.css
추가
.board_hd_con img {max-width:100%;height:auto}
Memo
0 Comments