전체 검색 글자수
본문
답변 2
/bbs/search.php 파일에서 아래 숫자가 글자수 입니다.
$content = cut_str($content, 300, "…");
https://demo.sir.kr/gnuboard5/bbs/search.php?sfl=wr_subject&sop=and&stx=%ED%85%8C%EC%8A%A4%ED%8A%B8
url 의 경우
https://demo.sir.kr/gnuboard5/skin/search/basic/style.css?ver=2303229
파일의 일부를 다음처럼 수정 해볼수 있습니다.
.sch_res_list p {
/* padding-bottom:10px; */
color:#666;
line-height:1.5em;
/* added */
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
답변을 작성하시기 전에 로그인 해주세요.