skip to Main Content

The following code renders as bullets on windows desktop Adobe reader Renders as bullets on Android version 13, latest version of Adobe acrobat reader app, but, in liquid mode only In normal mode on the android app, the bullets show up as question marks! I don’t use any css style for the bullets at all

pure html -> https://codepen.io/kutty-nakku/pen/MWqLWLp <div><ul>...</ul></div>

Any help/ideas will be appreciated

Thanks

Tried several combinations with and without the DIV as there was a note somewhere that lists don’t show up properly in mpdf when they are in a table

2

Answers


  1. Chosen as BEST ANSWER

    I also noticed that the alphabet "f" was also appearing as "?"

    This was with freeserif as the font setting

    I changed it to Arial and not only "f" appeared well, but the bullet problem also went away, on all platforms!

    I guess it was something to do with the font. Strange that it worked on the PC and in liquid mode.

    Ah well.....


  2. What if you write the style of the bullets explicitly?

    
        li {list-style-type: disc;}
    
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search