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.
|
Edit templates/base/scripts/BxBaseMenu.php.
Look for this at about line 277
$sSubItems .= (!$bFirst ? '<div class="bullet">·</div>' : '') . $this->genSubItem( _t( $aItem['Caption'] ), $aItem['Link'], $aItem['Target'], $aItem['Onclick'], $iItemID == $this->aMenuInfo['currentCustom']);
Change the · to |
https://www.deanbassett.com |
Thank you!
Can that be altered to reference a small graphic, or is that for characters only?
7.3.5 with responsive UNI |
That is a character,
But the · can be replaced with a html image tag as well to use a graphic.
https://www.deanbassett.com |
Thank you so much for your help!!! Now, it is just looks great!! Thanks!! |
But the · 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.
7.3.5 with responsive UNI |
But the · 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.
·
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 |
But the · 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 |