1. 수정해야 되는 파일
해당 스킨의 view.php 파일
2. 수정해야 되는 부분
다음 코드의 아래쪽에...
다음 코드를 추가합니다.
해당 스킨의 view.php 파일
2. 수정해야 되는 부분
다음 코드의 아래쪽에...
<table border=0 cellspacing=0 cellpadding=10 width=<?=$width?>>
다음 코드를 추가합니다.
<? if ($upload_image1<>"") {
$size = GetImageSize("data/".$id."/".$file_name1);
if($size[0]>$width) $upload_image1 = str_replace("img ", "img width=".(610)." ", $upload_image1);
}
if ($upload_image2<>"") {
$size = GetImageSize("data/".$id."/".$file_name2);
if($size[0]>$width) $upload_image2 = str_replace("img ", "img width=".(610)." ", $upload_image2);
}
?>
$size = GetImageSize("data/".$id."/".$file_name1);
if($size[0]>$width) $upload_image1 = str_replace("img ", "img width=".(610)." ", $upload_image1);
}
if ($upload_image2<>"") {
$size = GetImageSize("data/".$id."/".$file_name2);
if($size[0]>$width) $upload_image2 = str_replace("img ", "img width=".(610)." ", $upload_image2);
}
?>
'Tip&Tech > Zeroboard' 카테고리의 다른 글
제로보드XE 에 발 담그다! (2) | 2007.10.29 |
---|---|
[팁] 제로보드에서 사용자가 로그인을 했는지 여부를 확인할 수 있는 방법 (0) | 2007.08.04 |
제로보드 최근 게시물 새글 작성시 New이미지 뜨게 하는 방법! (0) | 2007.01.10 |
이미지 링크시 본문에 해당이미지 보여주기 (0) | 2007.01.06 |
게시물 중 이미지 클릭하면 새창으로 이미지 보여주기 (0) | 2007.01.06 |