묻고답하기
위젯스타일 more 가 아닌 해당 게시판 제목 클릭시 바로 게시판 가도록
2012.01.09 23:37
모듈제목 more
--------------------------------------------
게시글제목 날짜 등등
게시글제목 날짜 등등
게시글제목 날짜 등등
게시글제목 날짜 등등
게시글제목 날짜 등등
위처럼 나오게 되고 more 버튼을 클릭해야 해당 모듈로 이동이 가능한데.
위의 '모듈제목' 부분을 클릭하면 바로 해당 모듈로 이동하게 링크를 걸려면 어디를 수정하면 될까요?
스킨은 지금 자료실엔 없지만 심플라이트를 쓰고있습니다.
아래 widgetstyle.html 파일 부분
<!--%import("css/widgetBoxStyle.css")-->
<div class="widgetBoxContainer {$widgetstyle_extar_var->ws_style}">
<div class="widgetBox">
<!--@if($widgetstyle_extar_var->ws_title_image || $widgetstyle_extar_var->ws_title)-->
<h3 class="widgetBoxHeader" <!--@if($widgetstyle_extar_var->wws_title_colors_title_color)-->style="color:{$widgetstyle_extar_var->ws_title_color};"<!--@end-->>
<!--@if($widgetstyle_extar_var->ws_title_icon)-->
<img src="{$widgetstyle_extar_var->ws_title_icon}" />
<!--@end-->
<!--@if($widgetstyle_extar_var->ws_title_image)-->
<img src="{$widgetstyle_extar_var->ws_title_image}" />
<!--@else-->
<!--@if($widgetstyle_extar_var->ws_title)-->
{$widgetstyle_extar_var->ws_title}
<!--@end-->
<!--@end-->
</h3>
<!--@end-->
{$widget_content}
{@$widgetstyle_extar_var->ws_more_url=trim($widgetstyle_extar_var->ws_more_url);}
<!--@if($widgetstyle_extar_var->ws_more_url)-->
<!--@if(strtolower(substr($widgetstyle_extar_var->ws_more_url,0,4))=='http')-->
<a href="{$widgetstyle_extar_var->ws_more_url}" class="widgetMore">
<!--@else-->
<a href="http://{$widgetstyle_extar_var->ws_more_url}" class="widgetMore">
<!--@end-->
<!--@if($widgetstyle_extar_var->ws_more_image)-->
<img src="{$widgetstyle_extar_var->ws_more_image}" />
<!--@else if($widgetstyle_extar_var->ws_more_text)-->
{$widgetstyle_extar_var->ws_more_text}
<!--@else-->
more
<!--@end-->
</a>
<!--@end-->
<span class="rcContainer rcTop">
<span class="rc tl"></span>
<span class="rc tr"></span>
</span>
<span class="rcContainer rcBottom">
<span class="rc bl"></span>
<span class="rc br"></span>
</span>
</div>
</div>
widgetstyle.html 파일에 다음 코드를 넣으세요
그러면 더보기 url이 있을 경우
제목에 링크가 적용됩니다.
<!--%import("css/widgetBoxStyle.css")-->
<div class="widgetBoxContainer {$widgetstyle_extar_var->ws_style}">
<div class="widgetBox">
<!--@if($widgetstyle_extar_var->ws_title_image || $widgetstyle_extar_var->ws_title)-->
<h3 class="widgetBoxHeader" <!--@if($widgetstyle_extar_var->wws_title_colors_title_color)-->style="color:{$widgetstyle_extar_var->ws_title_color};"<!--@end-->>
<!--@if($widgetstyle_extar_var->ws_title_icon)-->
<img src="{$widgetstyle_extar_var->ws_title_icon}" />
<!--@end-->
<!--@if($widgetstyle_extar_var->ws_title_image)-->
<img src="{$widgetstyle_extar_var->ws_title_image}" />
<!--@else-->
<!--@if($widgetstyle_extar_var->ws_title)-->
{@$widgetstyle_extar_var->ws_more_url=trim($widgetstyle_extar_var->ws_more_url);}
<!--@if($widgetstyle_extar_var->ws_more_url)-->
<a href="{$widgetstyle_extar_var->ws_more_url}" class="widgetMore"><!--@end-->
{$widgetstyle_extar_var->ws_title}
<!--@if($widgetstyle_extar_var->ws_more_url)--></a><!--@end--><!--@end-->
<!--@end-->
</h3>
<!--@end-->
{$widget_content}
<!--@end-->
<span class="rcContainer rcTop">
<span class="rc tl"></span>
<span class="rc tr"></span>
</span>
<span class="rcContainer rcBottom">
<span class="rc bl"></span>
<span class="rc br"></span>
</span>
</div>
</div>