X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Breadcrumbs as Images (https://forum.x-cart.com/showthread.php?t=23668)

dalmuti 07-28-2006 11:12 AM

Breadcrumbs as Images
 
Hello,

I would like to change the breadcrumbs from location.tpl file to use background images something like this:

http://www.studio57designs.com/breadcrum.gif

Any ideas?

Thanks,

Louise

Zaja 07-28-2006 01:34 PM

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}


dalmuti 07-29-2006 04:58 PM

breadcrumbs
 
Thanks for the code...how do I make the last breadcrumb...a different color?

Thanks again,

Louise


All times are GMT -8. The time now is 09:40 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.