View Single Post
  #1 (permalink)  
Old 02-16-2007, 11:25 AM
dsenior dsenior is offline
New Pligger
 
Join Date: Feb 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
link_summary condition.. little help?

Hey,
Love all the work, kbeaver, u've been a busy man..

I am trying to add a conditional statement to the beginning of link_summary.tpl
Basically, I want to check if category = Video, if so.. then load a different background image for the vote box... defined as news-shakeitvideo and news-shakeit2video in the css..

this is one of many attempts...

<div class="news-summary" id="news-{$link_shakebox_index}">
{if $Voting_Method eq 1}
{if $story_status eq "published"}
{if $request_category eq "Video"}
<ul class="news-shakeitvideo">
{else}
<ul class="news-shakeit">
{/if}
{else}
{if $request_category eq "Video"}
<ul class="news-skakeitvideo2">
{else}
<ul class="news-shakeit2">
{/if}
{/if}...............etc..

let me know what I can do to get this working.
Thanks for the help
Reply With Quote