묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
컨텐츠 위젯 갤러리 스킨에서 이미지 클릭이 안됩니다.
2015.01.24 22:33
안녕하세요.
funnyxeGallery 갤러리 위젯을 설치했습니다.
제가 몇부분을 수정을 했는데요.
제목만 클릭만 되고 썸네일 영역에서는 클릭이 되질 않아 불편한데요.
제가 어느 부분을 수정하면 썸네일 부분도 클릭이 가능해질지 몰라 문의드립니다.
도움 주시면 감사하겠습니다.
<load target="./css/widget.css" />
<load target="./css/default.css" cond="!$colorset || $colorset == 'default'" />
<load target="./css/pink.css" cond="$colorset == 'pink'" />
<load target="./css/skyblue.css" cond="$colorset == 'skyblue'" />
<block cond="$widget_info->thumbnail_width < 120">
{@
$widget_info->thumbnail_width = 120;
}
</block>
<block cond="$widget_info->thumbnail_height < 120">
{@
$widget_info->thumbnail_height = 120;
}
</block>
<div class="widgetContainer">
<ul class="fGallery {$colorset}">
<li loop="$widget_info->content_items => $key, $item" style="width: {$widget_info->thumbnail_width}px; height: {$widget_info->thumbnail_height}px;<!--@if($item->getThumbnail())--> background-image:url({$item->getThumbnail()})<!--@end-->">
<a href="{$item->getLink()}" target="_blank"|cond="$widget_info->new_window"></a>
<div align="center" style="margin-top:175px;"><font size="2px" color="#777777"><a href="{$item->getLink()}" target="_blank"|cond="$widget_info->new_window">{$item->getTitle($widget_info->subject_cut_size)}</a></font></div>
<div align="center" style="margin-top:5px;"><font size="2px" color="#777777"><img src="./images/view.png"> {$item->get('readed_count')} <img src="http://./images/comment.png"> {(int)$item->getCommentCount()} <img src="./images/vote.png"> {(int)$item->get('voted_count')}</font></div>
<div style="margin-top:5px;">
<table border=0 width="100%" style='border-left:0;border-right:0;border-bottom:0;border-top:0'><tr><td width="70%"><a href="#" onclick="return false;" class="author member_{$item->getMemberSrl()}">{$item->getNickName($widget_info->nickname_cut_size)}</a></td>
<td width="30%" align="right"><font size="2px" color="#777777">{$item->getRegdate("m-d")}</font></td></tr></table>
</div>
</li>
</ul>
</div>