Check this, add
breadcrumbsCenter class to css file, create
breadcrumbs_left.gif and
breadcrumbs_right.gif and replace code in
location.tpl with following:
Code:
{if $location}
<table cellpadding="0" cellspacing="0">
<tr>
{strip}
{section name=position loop=$location}
<td>[img]{$ImagesDir}/breadcrumbs_left.gif[/img]</td>
<td class="breadcrumbsCenter">
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}" class="NavigationPath">{/if}
{$location[position].0}
{if $location[position].1 ne "" }</a>{/if}
{if not %position.last%}{/if}
</td>
<td>[img]{$ImagesDir}/breadcrumbs_right.gif[/img]</td>
{/section}
{/strip}
</tr>
</table>
{/if}