Ticket #4106 (closed Bug: fixed)
Arrows Problem - Right To Left
| Reported by: | Anonymous User | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.1 |
| Component: | Templates/CSS | Version: | |
| Severity: | Keywords: | ||
| Cc: |
Description
You are here: Home â Articles â article1
â â â The arrows should go from right to left
should be ←
Change History
comment:2 Changed 7 years ago by reinout
Fixed it a bit, limi fixed it better. Please try it out and see if it's any good :-)
Note: See
TracTickets for help on using
tickets.

Seems like the title shoud be "RTL problem with breadcrumbs", Ofer ;) Here is (feel free to customize it, since I'm not a pythonist) the solution: in global_pathbar replace the following:
WAS:
<span tal:condition="breadcrumbs" class="breadcrumbSeparator">→</span>
IS NEEDED:
<span tal:condition="python:isRTL and breadcrumbs"
<span tal:condition="python: not isRTL and breadcrumbs"
_ and one more place _:
WAS:
<span class="breadcrumbSeparator" tal:condition="not: is_last"> → </span>
IS NEEDED:
<span tal:condition="python:isRTL and not is_last"
<span tal:condition="python: not isRTL and not is_last"