갤러리 하단에 있는 타이들의 위치를
하단이 아니고 상단으로 변경하려니 잘 안되네요~
skin은 pic-gallery를 사용하구 있습니다.
하단에 고정된건가요? CSS를 아무리해봐도 안되네요~ 실력이 ㅠㅠ
스킨의 document.php 쪽에있는 제목 말씀인가요?
CSS로 안되시면 직접 document.php 파일에서 레이아웃을 수정해보세요.
어떤식으로 작업중이신가요?
최신글쪽의 latest.php 쪽입니다.
<div id="kboard-pic-gallery-latest">
<?php while($content = $list->hasNext()):?>
<?php
$attach = current($content->attach);
$resize_img_src = $attach[0]?kboard_resize($attach[0], 280, 320):'';
?>
<div class="kboard-pic-gallery-latest-item">
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document" class="kboard-pic-gallery-latest-thumbnail">
<?php if(!$resize_img_src):?>
<i class="icon-picture"></i>
<?php else:?>
<img src="<?php echo $resize_img_src?>" alt="">
<?php endif?>
</a>
<div class="kboard-pic-gallery-latest-title">
<h4>내용안내</h4></br><?php echo mb_strimwidth(strip_tags($content->content), 0, 250, '...', 'utf-8')?>
<!--p class="cut_strings"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document"><?php echo $content->title?></a></p-->
</div>
</div>
<?php endwhile?>
</div>
이었는데요.
<div id="kboard-pic-gallery-latest">
<?php while($content = $list->hasNext()):?>
<?php
$attach = current($content->attach);
$resize_img_src = $attach[0]?kboard_resize($attach[0], 280, 320):'';
?>
<div class="kboard-pic-gallery-latest-item">
<div class="kboard-pic-gallery-latest-title">
<h3>내용안내</h3></br>
<?php echo mb_strimwidth(strip_tags($content->content), 0, 350,</br> '...자세히보기', 'utf-8')?>
<!--p class="cut_strings"><a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document"><?php echo $content->title?></a></p-->
</div>
<a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toStringWithPath($board_url)?>#kboard-pic-gallery-document" class="kboard-pic-gallery-latest-thumbnail">
<?php if(!$resize_img_src):?>
<i class="icon-picture"></i>
<?php else:?>
<img src="<?php echo $resize_img_src?>" alt="">
<?php endif?>
</a>
</div>
<?php endwhile?>
</div>
바꾸니 잘되네요~ 감사합니다~