답변 1개
채택된 답변
+20 포인트
마르스컴퍼니
Expert
7년 전
/skin/board/basic/style.css 의 203 Line 에서
font-size:2em; 을 font-size:1.2em; 정도로 변경하면 됩니다.
게시판 스킨 설정에서 (테마)xxxx 형태는 /theme/[테마명]/skin/board 가
xxxx 형태는 /skin/board 가 스킨 디렉토리입니다.
제가 확인한 바로는 후자로 되어있습니다.
로그인 후 평가할 수 있습니다
답변에 대한 댓글 2개
�
정글범
7년 전
�
마르스컴퍼니
7년 전
'/theme/에디터/skin/board/basic' 경로에 있는 파일이 아닙니다.
/skin/board/basic/style.css 파일입니다.
해당 파일의 203 라인에서 font-szie 를 수정해 주면 됩니다.
/skin/board/basic/style.css 파일입니다.
해당 파일의 203 라인에서 font-szie 를 수정해 주면 됩니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
/* */
.kor { word-wrap: break-word; word-break: keep-all; }/* 한글 줄바꿈 */
a { color:#333; }
a:focus, a:hover, a:link, a:visited, a:active { color:#555; text-decoration: none; }
a.link-inverse { color:#fff; }
a.link-inverse:focus, a.link-inverse:hover { color: #ddd; }
a.link-btn:link, a.link-btn:visited { color:#fff; }
.responsive-line {
max-width:100%; /* Customise it accordingly */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Extra Small */
@media(max-width:767px){
/* 메뉴 픽스 */
body { padding-top:35px; }
.navbar-static-top {
top: 0px;
border-width: 0 0 1px;
position: fixed;
right: 0px;
left: 0px;
z-index: 1030;
}
}
/* Small */
@media(min-width:768px) and (max-width:991px){
}
/* Medium */
@media(min-width:992px) and (max-width:1199px){
}
/* Large */
@media(min-width:1200px){
/* 우측 상단 메뉴 */
#listTopMenu { text-align:right; }
/* 푸터 좌측 메뉴 */
#listBottomMenu { text-align:left; }
}
/* 여백 */
.zero-padding { padding:0px; }
.list-inline > li.zero-padding { padding: 0 0px; } /* 버튼 그룹 패딩 제거 */
/* 폭 */
.w30 { width:30px; }
.w60 { width:60px; }
.w90 { width:90px; }
.w100 { width:100px; }
.w120 { width:120px; }
/* 테이블 */
.checkbox-middle { vertical-align:middle; } /* 게시판 타이틀 체크박스 */
.bottom-3b { border-bottom: 3px solid #ddd; } /* 테이블 하단 라인 */
.table tr:nth-of-type(1) th, .table tr:nth-of-type(1) td { border-top:none !important; } /* 테이블 첫줄 제거 */
/* 보정 - 삭제 예정 */
legend { display:none }
a.btn02 {
display: inline-block;
padding: 7px;
border: 1px solid #3b3c3f;
background: #4b545e;
color: #fff;
text-decoration: none;
vertical-align: middle;
}
이렇게 밖에 없는데...