글자색 바꾸는 방법좀여 정보
글자색 바꾸는 방법좀여본문
그누보드 기본스킨 skin=>board=>basic 에서 색변경 하는법좀여
리스트 목록에서 보이는 기본 글씨가 파란색인데 회색으로 하고 싶습니다.
아래는 list.skin.php입니다. 어느 부분을 고쳐야 회색으로 바뀌나요?
<style>
.board_top { clear:both; }
.board_list { clear:both; width:100%; table-layout:fixed; margin:5px 0 0 0; }
.board_list th { font-weight:bold; font-size:12px; }
.board_list th { background:url(<?=$board_skin_path?>/img/title_bg.gif) repeat-x; }
.board_list th { white-space:nowrap; height:34px; overflow:hidden; text-align:center; }
.board_list th { border-top:1px solid #ddd; border-bottom:1px solid #ddd; }
.board_list tr.bg0 { background-color:#fafafa; }
.board_list tr.bg1 { background-color:#ffffff; }
.board_list td { padding:.5em; }
.board_list td { border-bottom:1px solid #ddd; }
.board_list td.num { color:#999999; text-align:center; }
.board_list td.checkbox { text-align:center; }
.board_list td.subject { overflow:hidden; }
.board_list td.name { padding:0 0 0 10px; }
.board_list td.datetime { font:normal 11px tahoma; color:#6573DC; text-align:center; }
.board_list td.hit { font:normal 11px tahoma; color:#8F4F99; text-align:center; }
.board_list td.good { font:normal 11px tahoma; color:#BABABA; text-align:center; }
.board_list td.nogood { font:normal 11px tahoma; color:#BABABA; text-align:center; }
<!-- 게시판 목록 시작 -->
.board_list .notice { font-weight:bold; font-size:14px; color:#825AE4; }
<!-- 게시판 공지사항 -->
.board_list .current { font:bold 11px tahoma; color:#595959; }
.board_list .comment { font-family:Tahoma; font-size:10px; color:#595959; }
.board_button { clear:both; margin:10px 0 0 0; }
.board_page { clear:both; text-align:center; margin:3px 0 0 0; }
.board_page a:link { color:#777; }
.board_search { text-align:center; margin:10px 0 0 0; }
.board_search .stx { height:21px; border:1px solid #9A9A9A; border-right:1px solid #595959; border-bottom:1px solid #D8D8D8; }
</style>
리스트 목록에서 보이는 기본 글씨가 파란색인데 회색으로 하고 싶습니다.
아래는 list.skin.php입니다. 어느 부분을 고쳐야 회색으로 바뀌나요?
<style>
.board_top { clear:both; }
.board_list { clear:both; width:100%; table-layout:fixed; margin:5px 0 0 0; }
.board_list th { font-weight:bold; font-size:12px; }
.board_list th { background:url(<?=$board_skin_path?>/img/title_bg.gif) repeat-x; }
.board_list th { white-space:nowrap; height:34px; overflow:hidden; text-align:center; }
.board_list th { border-top:1px solid #ddd; border-bottom:1px solid #ddd; }
.board_list tr.bg0 { background-color:#fafafa; }
.board_list tr.bg1 { background-color:#ffffff; }
.board_list td { padding:.5em; }
.board_list td { border-bottom:1px solid #ddd; }
.board_list td.num { color:#999999; text-align:center; }
.board_list td.checkbox { text-align:center; }
.board_list td.subject { overflow:hidden; }
.board_list td.name { padding:0 0 0 10px; }
.board_list td.datetime { font:normal 11px tahoma; color:#6573DC; text-align:center; }
.board_list td.hit { font:normal 11px tahoma; color:#8F4F99; text-align:center; }
.board_list td.good { font:normal 11px tahoma; color:#BABABA; text-align:center; }
.board_list td.nogood { font:normal 11px tahoma; color:#BABABA; text-align:center; }
<!-- 게시판 목록 시작 -->
.board_list .notice { font-weight:bold; font-size:14px; color:#825AE4; }
<!-- 게시판 공지사항 -->
.board_list .current { font:bold 11px tahoma; color:#595959; }
.board_list .comment { font-family:Tahoma; font-size:10px; color:#595959; }
.board_button { clear:both; margin:10px 0 0 0; }
.board_page { clear:both; text-align:center; margin:3px 0 0 0; }
.board_page a:link { color:#777; }
.board_search { text-align:center; margin:10px 0 0 0; }
.board_search .stx { height:21px; border:1px solid #9A9A9A; border-right:1px solid #595959; border-bottom:1px solid #D8D8D8; }
</style>
댓글 전체

style.css를 변경해야할걸요?

/gnuboard4/style.css 부분에
a:link, a:visited, a:active { text-decoration:none; color:#666666; }
a:hover { text-decoration:underline;color:#e5490b; }
또는 list.skin.php
.board_list td a{ color:#666;text-decoration:none }
추가해주세요
a:link, a:visited, a:active { text-decoration:none; color:#666666; }
a:hover { text-decoration:underline;color:#e5490b; }
또는 list.skin.php
.board_list td a{ color:#666;text-decoration:none }
추가해주세요
감사 합니다. 혹시 글읽으면 변하는 색깔부분은 어디서 수정하는지도? ㅜㅡ

visited.. 입니다.
.board_list td a:hover,
.board_list td a:active,
.board_list td a:focus{color:#333; }
.board_list td a:visited {color:#eee;}
.board_list td a:hover,
.board_list td a:active,
.board_list td a:focus{color:#333; }
.board_list td a:visited {color:#eee;}
능력자 님들 감사 합니다.~~~