View Single Post
  #1  
Old 03-13-2009, 06:24 AM
 
leekaye leekaye is offline
 

Newbie
  
Join Date: Mar 2009
Posts: 4
 

Default Format speedbar with border off on last tab

Hi, newbie working on my first cart. I'm trying to mod the speedbar to check for the last tab so I can turn off the right border. Added this IF statement.

{if $speed_bar}
<div class="tabs">
<ul>
{foreach from=$speed_bar item=sb}
{if $smarty.section.sb.last}
<li class="tab_last"><a href="{$sb.link|amp}">{$sb.title}</a></li>
{else}
<li><a href="{$sb.link|amp}">{$sb.title}</a></li>
{/if}
{/foreach}
</ul>

</div>
{/if}


Still showing the last border. Am I formatting this correctly?

TIA!
Lisa
__________________
x-cart 4.2
Reply With Quote