I'm using Word Online in Ubuntu and the bullet points don't appear correctly. This is what it looks like in Firefox:
How can I fix this?
3 Answers
Update
I submitted a bug report and this issue has been fixed as of Firefox 68.
This issue originally affected all browsers, but Microsoft fixed it for Chrome by adding downloadable versions of the fonts to the Word Online site.
The workaround is below in case this is still broken for other browsers.
Workaround
Install the missing fonts locally
mkdir -p ~/.fonts/ wget -O ~/.fonts/symbol.ttf wget -O ~/.fonts/wingding.ttf wget -O ~/.fonts/symbol_msfontservice.ttf wget -O ~/.fonts/wingdings_msfontservice.ttf fc-cache -f -vOnce that's done, the bullet points should be fixed:
Details
Examining the source of the page, here's the information on the various bullet points:
- First level
- Character: unicode f0b7 ()
- Font: Symbol
- Second level
- Character: o
- Font: Courier New
- Third level
- Character: unicode f0a7 ()
- Font: Wingdings
You can find more details than you ever wanted to know about this issue here:
4I have the same issue, tried your solution, but the problem remained. It was as though the wingdings is not well installed.
Word Online:In Word Online, selecting: bullets / Define new bullet / Wingdings
LibreOffice:In LibreOffice, inserting special character
What succeeded at fixing it was to download the font from . I placed it directly in /usr/share/fonts/truetype/. Then I ran:
sudo fc-cache -rv 3 I already had wine installed, so this worked for me:
cd ~/.fonts
ln -s /usr/share/wine/fonts wine
fc-cacheI didn't even have to restart Firefox.