It does not take the fonts and deletes what is declared in the body of the pdf
-
Hi how are you.
I have used this plugin for a long time and it has improved my PDFs along with the CSS, which is wonderful.
But since the last update, everything got out of control.
I don’t take the fonts.
disappear any ID that you declare inside the code
width, cellpadding, cellspacing, border, etc. disappear. Everything that is not declared inside a class. It doesn’t take me if I declare in an IDinstall the latest version from github and there are no changes. I declare the CSS inside custom CSS and the code inside customize your pdf.
My code
<table class="tabla_presupuesto" width="100%" cellpadding="0" cellspacing="0" border="0"> <tbody> <tr> <td class="titulo_h1"><h1>Preguntas para realizar presupuesto de Sitio Web</h1></td> </tr> <tr> <td class="titulo_h2"><h3><small>Nro [submission_id-309] - <strong>Fecha: </strong>[date]</small></h3></td> </tr> </tbody> </table>
CSS
.tabla_presupuesto { padding: 20px 0 20px 0; border-bottom: 2px solid #707070; font-family: 'Poppins, sans-serif'; font-size: 16px; color: #333132; } .titulo_h1 { color: #ff9900; font-size: 35px; } .titulo_h2 { font-family: 'Poppins, sans-serif'; font-size: 21px; }
After recording how everything leaves me:
<table class="tabla_presupuesto"> <tr> <td class="titulo_h1"><h1 >Preguntas para realizar presupuesto de Sitio Web</h1></td> </tr> </table>
The page I need help with: [log in to see the link]
- The topic ‘It does not take the fonts and deletes what is declared in the body of the pdf’ is closed to new replies.