묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
제목 Column을 넓히기 (in a bulletin board)
2017.10.15 10:02
간단한 문제 같은데 여기까지 들고와서 미안합니다. 친절을 베풀어주시기 바랍니다.
본인의 Bulletin Board인데, 최근 update한후 (?)에 "Author" column (화살표)이 쭐어들어서
옆에있는 "Date" column을 밀어서 겹칠려합니다. 제일 밑에있는 Row에서 볼수있읍니다.
여기의 "Author" column을 더 넓혀서 둘을 떨어트리고 싶읍니다.
어디에서 어떻게 이 작업을 할수있나요? 미리 감사드립니다.
현장: http://www.snuma.net/xe/index.php?mid=freeboard&document_srl=64847&comment_srl=64858
댓글 3
-
sejin7940
2017.10.15 23:08
-
Steven
2017.10.19 11:42
감사합니다.
해보겠읍니다.
-
이근동
2017.10.20 01:38
http://www.snuma.net/xe/modules/board/skins/default/board.default.min.css위의 파일에서아래부분을 찾아.board_list td.title {- white-space: normal;
- line-height: 1.4;
- width: 100%;
아래와 같이 width 값을 58% 정도로 하는게 괜찮은 형태를 갖추는거 같습니다..board_list td.title {- white-space: normal;
- line-height: 1.4;
- width: 58%;
방법은 여러가지가 있지만
스킨내의 css 파일이나 목록을 의미하는 list.html 이나 _header.html 같은 파일 등에
<style>
.board_list td { width:auto !important; }
</style>
를 추가해보세요