I am building an e-commerce site with Weebly, for use in France.
Weebly, by default, provides prices in a span tag:
<span class="xxx"> €200.20 </span>
The Euro should come after the price, not before like the dollar. I can add a Euro sign at the end with content: "€", but I need to get rid of the leading Euro sign.
I have no access to the backend to add or change the tags -- I'm stuck trying to change the content of the tag via CSS (which I know is verboten).
Tragically, the Euro is the second character and not the first, so I can't directly manipulate it.
A possible solution would be to shift the content of the span tag to the left, cutting off the Euro sign.
Other solutions are welcome.
I'm not optimistic, and since the site template already has tons of complicated javascript I'd prefer to avoid using a scripting solution.
Before marking this question as a duplicate: many people have asked how to manipulate first words in CSS etc.