• Resolved cor1969

    (@cor1969)


    It’s a useful plugin (I’m using version 3.8). But I have a question:
    Is it possible to give the contents of the pdf some formatting, such as bold, italic, tabs, formatting in tables and so on?
    (In an older version I saw something like the possibility of a css, but I don’t see that anymore.)

    Thanks in advance,

    Cor

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author ZealousWeb

    (@zealopensource)

    Hello @cor1969

    Thanks for using our plugin.

    Yes you can style your content as well as table. but you need to follow inline and table properties for style.
    Note: you can not add class and do design because of here we are using PDF library.

    Here one example which help you:

    <table style="width:50%;border-collapse: collapse;" border="1" bgcolor="#D6EEEE" cellpadding="15" >
      <tr>
        <th>Firstname</th>
        <th>Lastname</th> 
        <th>Age</th>
      </tr>
      <tr bgcolor="#ffffff"> 
        <td><b>Jill</b></td>
        <td>Smith 50</td>
        <td>50</td>
      </tr>
      <tr >
        <td><i>Eve</i></td>
        <td>Jackson</td>
        <td>94</td>
      </tr>
    </table>
Viewing 1 replies (of 1 total)
  • The topic ‘Is it possible to format the content of the pdf, like bold, italic, tables’ is closed to new replies.