Maybe someone can help me here. I want to make the last breadcrumb an H1 but i can't figure out where to put the h1 tag. I only want it to make the last breadcrumb an h1 and whatever I do it makes them all a new h1.
Code:
{* $Id: location.tpl,v 1.8.2.1 2003/12/24 13:26:06 svowl Exp $ *}
{strip}
<a href="{$http_location}/">
<font class=NavigationPath>{$config.Company.company_name}</font>
</a>
{if $last_location ne ""}
::
{if $last_url ne ""}
<a href="{$last_url}">
{/if}
<font class=NavigationPath>{$last_location}</font>
{if $last_url ne ""}
</a>
{/if}
{/if}
{if $location}
::
{section name=position loop=$location}
{if $location[position].1 ne "" }
{* SAFETYNET DSEFU MOD *}
{if $enable_seo_links == "Y"}
<A href="{$http_location}/{seo_link cat_name=$location[position].0 cat_id=$Catids[position]}" class="VertMenuItems">
{else}
<a href="{$location[position].1}">
{/if}
{* END SAFETYNET DSEFU MOD *}
{/if}
<font class=NavigationPath>{$location[position].0}</font>
{if $location[position].1 ne "" }</a>{/if}
{if %position.last% ne "true"}::
{/if}
{/section}
{/if}
{/strip}
Thanks in advance for any help you can offer
Mike