입력폼에서 업로드한 그림 파일을 최신글 스킨에서 배경으로 정보
그누보드 입력폼에서 업로드한 그림 파일을 최신글 스킨에서 배경으로본문
입력폼에서 업로드한 그림 파일을 최신글 스킨에서 보여지는 내용의 배경으로 넣으려면 어떻게 해야 하나요?
최신글 스킨에서 제목과 내용이 보여지는데 그 내용밑으로 배경을 넣으려구요.
마치 시화(그림이 들어간 시)처럼요.
최신글 스킨에서 제목과 내용이 보여지는데 그 내용밑으로 배경을 넣으려구요.
마치 시화(그림이 들어간 시)처럼요.
댓글 전체
gbview.skin.php 이거 수정은 힘드네요.
잘 안되요. ㅠ.ㅠ
잘 안되요. ㅠ.ㅠ
되는군요. ( *^^)/~ 감사!!!
최신글뿐만 아니라 게시판에서도 그렇게 보이게 하고 싶으면
gbview.skin.php를 같은 방법으로 수정해도 되겠죠?
최신글뿐만 아니라 게시판에서도 그렇게 보이게 하고 싶으면
gbview.skin.php를 같은 방법으로 수정해도 되겠죠?
latest.skin.php에서 for문을 아래와 같이 수정해보세요.
기존 for 안에 table을 하나 추가했습니다. 그리고 table의 background가 추가되었습니다.
이 테이블의 width와 height는 님께서 원하시는 사이즈로 변경해서 사용하세요.
<? for ($i=0; $i<count($list); $i++) { ?>
<tr><td colspan=3>
<table background=<?=$list[$i][file_image1]?> width=100 height=100>
<tr height=22>
<td width=60><?=$list[$i][date]?></td>
<td><?=$list[$i][icon_new]?><a href='<?="./?doc=$cfg[bbs_dir]/gnuboard.php&bo_table=$bo_table&wr
_id={$list[$i][wr_id]}"?>'><?=$list[$i][subject]?></a> <?=$list[$i][commentcnt]?></td>
<td width=70 align=center><?=$list[$i][name]?></td>
</tr>
</table>
</td></tr>
<? } ?>
기존 for 안에 table을 하나 추가했습니다. 그리고 table의 background가 추가되었습니다.
이 테이블의 width와 height는 님께서 원하시는 사이즈로 변경해서 사용하세요.
<? for ($i=0; $i<count($list); $i++) { ?>
<tr><td colspan=3>
<table background=<?=$list[$i][file_image1]?> width=100 height=100>
<tr height=22>
<td width=60><?=$list[$i][date]?></td>
<td><?=$list[$i][icon_new]?><a href='<?="./?doc=$cfg[bbs_dir]/gnuboard.php&bo_table=$bo_table&wr
_id={$list[$i][wr_id]}"?>'><?=$list[$i][subject]?></a> <?=$list[$i][commentcnt]?></td>
<td width=70 align=center><?=$list[$i][name]?></td>
</tr>
</table>
</td></tr>
<? } ?>