Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
1247 Visualizzazioni

Does anyone know how to add special characters into the website e.g. subscript & superscript? I am having no luck even if I edit the html.

I am running Odoo 17 Enterprise on-premise.

Avatar
Abbandona
Risposta migliore

To add special characters like subscript and superscript in Odoo 17's website, you can directly insert HTML entities or use inline CSS styling. Here are a few methods to accomplish this, especially if you’re editing the HTML of website pages or blocks:

Odoo’s website editor accepts standard HTML entities, so you can manually add subscript and superscript characters using the appropriate HTML tags:

  • Superscript: Wrap the text in <sup>...</sup>.
  • Subscript: Wrap the text in <sub>...</sub>.
Example:

If you’re editing the HTML directly, you can insert:

<p>H<sub>2</sub>O is water, and E = mc<sup>2</sup> is Einstein's equation.</p>

This will render:

  • "H₂O" (H₂ as subscript)
  • "E = mc²" (² as superscript


Hope this helps

Daniel

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
0
gen 25
965
2
nov 24
2479
0
nov 24
1171
3
lug 25
2258
1
giu 25
2945