Is that possible to change the font size at the “Notes” area?
You can use HTML code to do that.
For example, to set font to 11px, use following code:
<div style="font-size: 11px">My notes to customer</div>
thnak for reply… but when I put on the code my remark like this
Remark: 1. Terms of payment: -50% ( 1st payment ) deposit upon confirmation of order. -40% ( 2nd payment ) progress payment before delivery. -10% ( 3rd payment ) payment on the date of installation. 2. Deposit is non-refundable if order cancelled. 3. reserves the right to adjust the price for any alteration of job after confirmation. 4. Extra charges will be imposed for additional accessories which are not purchased from 5. Validity of this quotation is only for one month from the date issue.
May I know how to made a space like below
Remark:
- Terms of payment:
-50% ( 1st payment ) deposit upon confirmation of order.
-40% ( 2nd payment ) progress payment before delivery.
-10% ( 3rd payment ) payment on the date of installation. - Deposit is non-refundable if order cancelled.
- reserves the right to adjust the price for any alteration of job after confirmation.
- Extra charges will be imposed for additional accessories which are not purchased from
- Validity of this quotation is only for one month from the date issue.
Use HTML: Put <br>
to force a line-break, or surround each line with <p>
…</p>
tags.