Need some modification for breadcrumb list

 I want to change "・" to ”|” in breadcrumb list.  Please see image below.

e.g.
Default profile breadcrumb list.


Account Home
· Avatar · Connections · My Membership · Subscriptions · Unregister · Payments · Cart · Notifications

Want to change  to....

Account Home | Avatar| Connections | My Membership| Subscriptions| Unregister| Payments| Cart| Notifications

I like to know where do I have to change. You advice will be appreciate.

dot.jpg · 86.6K · 180 views
Quote · 6 Jul 2013

Edit templates/base/scripts/BxBaseMenu.php.

Look for this at about line 277

            $sSubItems .= (!$bFirst ? '<div class="bullet">&#183;</div>' : '') . $this->genSubItem( _t( $aItem['Caption'] ), $aItem['Link'], $aItem['Target'], $aItem['Onclick'], $iItemID == $this->aMenuInfo['currentCustom']);


Change the &#183; to &#124;


https://www.deanbassett.com
Quote · 6 Jul 2013

Thank you!

Can that be altered to reference a small graphic, or is that for characters only?

7.3.5 with responsive UNI
Quote · 6 Jul 2013

That is a character,

But the &#183; can be replaced with a html image tag as well to use a graphic.


https://www.deanbassett.com
Quote · 6 Jul 2013

Thank you so much for your help!!! Now, it is just looks great!! Thanks!!

Quote · 6 Jul 2013

 


But the &#183; can be replaced with a html image tag as well to use a graphic.


 Nice! Thanks for the fast response! Attaching a graphic I've been wanting to use for that.

sp_ArrowRight.png · 569B · 193 views
7.3.5 with responsive UNI
Quote · 6 Jul 2013

 

 


But the &#183; can be replaced with a html image tag as well to use a graphic.


 Nice! Thanks for the fast response! Attaching a graphic I've been wanting to use for that.

 
In your case, upload the image to templates/base/images/icons

Then change this.

&#183;

to this.

<img src="' . getTemplateIcon('sp_arrowright.png') . '" />


Make sure the image name you use is of the same case you used when you uploaded it. Case matters on Linux servers.

sp_arrowright.png is not the same as sp_ArrowRight.png even tho they are spelled the same, the case is different so are not treated the same. It is a common problem getting things to work.

Tested and working on my site. http://www.deanbassett.com/Deano

https://www.deanbassett.com
Quote · 6 Jul 2013

 

 

 


But the &#183; can be replaced with a html image tag as well to use a graphic.


 Nice! Thanks for the fast response! Attaching a graphic I've been wanting to use for that.

 
In your case, upload the image to templates/base/images/icons...

...Tested and working on my site. http://www.deanbassett.com/Deano

It's working on mine, too (now). 

Easy to see why you're one of the main "Go To" guys here.

Thanks, Deano - Your help is much appreciated!

7.3.5 with responsive UNI
Quote · 6 Jul 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.