▶ 로드비 스킨
style. css
코멘트 폰트 크기 수정 (font-size 부분 코드 삭제시 로드비 기본 폰트사이즈)
#log_list .item-comment .co-content .original_comment_area { word-break:break-all; font-size: 14px}
▷ 타래 게시판
전체 보기에 밑줄 넣기
* style.css
.thread_co_wrap a { ~~
font-family: KOHIBaeumOTF;
text-decoration-line: underline;
text-decoration-thickness:
1.5px;text-underline-offset: 0.3rem;
을 추가.
.wr_good a { ~~
text-decoration: none;
을 추가. (아니면 좋아요도 같이 묶여서 밑줄 들어감)
타래 전체 보기에서 폭 변하는 문제
배포링크 댓글 참고해서 설정 추가 후
.board-skin-basic {max-width:100%; margin: 0 auto;}
max-width를 100%로 지정.
접었다 펴는 기능
안녕하세요! 좋은 말씀 감사합니다. 평상시엔 접혀있고, 각 카테고리의 제목 부분을 클릭하면 펼쳐지도록 하는 코드를 알려드리겠습니다. ???? 1. list.skin.php 파일에서! ① <div class="header"> 를 다음과 같이 수정. <div class="header" onclick="toggleGallery(this)"> ② <div class="gall_row"> 를 다음과 같이 수정. <div class="gall_row" style="display: none;"> ③ 맨 밑에 <!-- } 게시판 목록 끝 --> 위에 엔터 두 번 정도 쳐서 공간을 만들고, 다음 코드 추가. <script> function toggleGallery(header) { var galleryRow = header.nextElementSibling; if (galleryRow.style.display === "none") { galleryRow.style.display = "block"; } else { galleryRow.style.display = "none"; } } </script> 2. (선택사항) 위 코드대로 수정하면 이미지들이 가운데정렬이 되는데, 만약 왼쪽 정렬을 유지하고 싶으시다면 style.css 파일에서 .gall_row .gall_box 검색. 해당 클래스 안에 있는 text-align: center; 을 삭제하거나 /*주석*/ 처리하기. 이렇게 하시면 카테고리 제목을 눌렀을 때 이미지 리스트가 보이도록 할 수 있습니다!
▷인스타 스크랩 게시판
헤더 부분 '~번째 로그' 등 뜨는 텍스트 수정
list.log.skin.php 에서
<? // 로그 넘버링 출력 ?> 부분 하단의
<span class="hologram"><?=($list_item['wr_num'] * -1)?>번째 로그</span>
해당 코드 수정
현재는 mnparty로 고정되어 있음
style. css
코멘트 폰트 크기 수정 (font-size 부분 코드 삭제시 로드비 기본 폰트사이즈)
#log_list .item-comment .co-content .original_comment_area { word-break:break-all; font-size: 14px}
style.css.php
넘버링 색상 직접 지정
폰트 제거 / 14px 적용중 (메모장/워드 바꾸기 기능)
[참고] 롤20 프사 엑박 문제 가이드
https://www.postype.com/@terophy/post/17103874
툴팁 색상 추가시 스킨 폴더의
1) style.css
최상단 hint 부분에 변수/컬러 지정 후
.mini_thumb .hint--minhi:after 코드 찾은 후 하단 변수 추가.
글씨가 흰색인지 검정인지는 상단 코드 보고 맞춰서 넣기!
2) write.skin.php
<option value="minhi" <?php if($file[$i]['content'] == "minhi") echo "selected"; ?>>PURPLE</option>
<option value="minhi">PURPLE</option>
각각 하단 부분에 변수 포함한 코드 추가
[등록]
등록시 인세인의 경우 PC 순서가 역순으로 되도록 정렬해야 함. (ex. PC1~4에서 PC1 정렬순서 = 4)
흉상 항목 = 썸네일
350~400px x 500px 사이즈, 두상이 한가운데 오도록 정렬
해당 스킨에서 일부 기능 숨길 때 참고 https://www.postype.com/@terophy/post/14487906
구글 머테리얼 아이콘 https://fonts.google.com/icons
[참고]
<img src="파일명.확장자" width="">
php 버전에 따라 뜨지 않는 경우가 있음. 현재 php 7.4 기준
외부링크 개수 추가
1) write.skin.php의
<input type="text" name="wr_2" id="wr_2" value="<?=$write['wr_2'];?>" class="frm_input">
이부분에 wr_6, wr_7 추가
2) list.skin.con.php
$img_count = 0;
for ($ii=0; $ii<4; $ii++){
if ($list[$i]['wr_'.($ii+2)]) {
$img_count++;
$ii<4 를 $ii<6 으로 바꾸기
...외부링크 넣는거 실패함 ㅠ_ㅠ 그냥 미니메뉴 사용하기..
전체 보기에 밑줄 넣기
* style.css
.thread_co_wrap a { ~~
font-family: KOHIBaeumOTF;
text-decoration-line: underline;
text-decoration-thickness:
1.5px;text-underline-offset: 0.3rem;
을 추가.
.wr_good a { ~~
text-decoration: none;
을 추가. (아니면 좋아요도 같이 묶여서 밑줄 들어감)
타래 전체 보기에서 폭 변하는 문제
배포링크 댓글 참고해서 설정 추가 후
.board-skin-basic {max-width:100%; margin: 0 auto;}
max-width를 100%로 지정.
접었다 펴는 기능
안녕하세요! 좋은 말씀 감사합니다. 평상시엔 접혀있고, 각 카테고리의 제목 부분을 클릭하면 펼쳐지도록 하는 코드를 알려드리겠습니다. ???? 1. list.skin.php 파일에서! ① <div class="header"> 를 다음과 같이 수정. <div class="header" onclick="toggleGallery(this)"> ② <div class="gall_row"> 를 다음과 같이 수정. <div class="gall_row" style="display: none;"> ③ 맨 밑에 <!-- } 게시판 목록 끝 --> 위에 엔터 두 번 정도 쳐서 공간을 만들고, 다음 코드 추가. <script> function toggleGallery(header) { var galleryRow = header.nextElementSibling; if (galleryRow.style.display === "none") { galleryRow.style.display = "block"; } else { galleryRow.style.display = "none"; } } </script> 2. (선택사항) 위 코드대로 수정하면 이미지들이 가운데정렬이 되는데, 만약 왼쪽 정렬을 유지하고 싶으시다면 style.css 파일에서 .gall_row .gall_box 검색. 해당 클래스 안에 있는 text-align: center; 을 삭제하거나 /*주석*/ 처리하기. 이렇게 하시면 카테고리 제목을 눌렀을 때 이미지 리스트가 보이도록 할 수 있습니다!
헤더 부분 '~번째 로그' 등 뜨는 텍스트 수정
list.log.skin.php 에서
<? // 로그 넘버링 출력 ?> 부분 하단의
<span class="hologram"><?=($list_item['wr_num'] * -1)?>번째 로그</span>
해당 코드 수정
현재는 mnparty로 고정되어 있음
[메모] 트래픽 /용량
https://www.postype.com/@mmmmyaksunsal/post/10793089
아이콘/글자 얼라인 안맞을때 https://www.postype.com/@terophy/post/14487906
user agent stylesheet(브라우저 기본설정)으로 인해 ::marker 요소가 점으로 남아있는 경우
ul{
list-style : none;
padding-left : 0px;
}
해당 코드를 style.css나 css파일에 추가한다.
왠지는 모르겠는데... 위젯메뉴 코드에 추가했더니 프로필에 있던 것도 사라짐 경사났네..
function copyText() {
const text = '<img src="파일명.확장자" width="500px">';
}
상기 내용으로 .js 파일을 저장해서 js/copy.js에 넣어준다.
이후 최상위경로 tail.php 미니메뉴 단락에
<img src="이미지주소" style="cursor: pointer;" onclick="copyText()">
<script src="js/copy.js"></script>
로 기입함.
이걸로 툴팁 달 수 있는지 확인 https://www.postype.com/@basilicom/post/10758807
뭔가 상자가 중복으로 뜬다면.. https://x.com/YONAx2_comm/status/1467751686550999045
특정화면에서 메뉴 숨김 이거 참고 https://www.postype.com/@terophy/post/14487906
메뉴 폰트 바꾸기
.iconic .widgetmenu_item_text { ~~~
.iconic .widgetmenu_side_item { ~~~
메뉴 유형에 따라서 찾아준 후
중괄호 안에 font-family: '폰트이름'; 추가