Foot section stick to the bottom on invoice template

1

Desarrollo - OptimalPyme
Added over 5 years ago

We need that our company administrative information keeps stick to the bottom of the invoice when creating a invoice template. How can we achieve that?

Dimitar Chervenakov about 4 years

Hi. Please check the following example of a custom template:
https://www.redmineup.com/pages/help/invoices/invoice-template-example

You may try to edit the following div element:

<div id="footer" class="clear">
    {{ invoice.description | textile }}
</div>

And also the css settings of it also:

}
  .invoice #footer {
    padding-top: 35px;
    width: 100%;
}

Answers (1)

-1

Dimitar Chervenakov
Added over 5 years ago

Hi. Please check the following example of a custom template:
https://www.redmineup.com/pages/help/invoices/invoice-template-example

You may try to edit the following div element:

<div id="footer" class="clear">
    {{ invoice.description | textile }}
</div>

And also the css settings of it also:

}
  .invoice #footer {
    padding-top: 35px;
    width: 100%;
}

    (1-1/1)