Customer addres not showing properly in print formate of quotaions

I want customer address below customer name just like my company name and address but the heading is coming “address”

image

Kindly tell me if I am using wrong format -

image

Did you insert Address details in the “Address” doctype linked with the “Customer” doctype?

Yes, I did

Please use the HTML code

<h3>Customer Details:</h3>
{{doc.customer_name}}

{{doc.address_display}}

1 Like

Can you please help me in this problem also -
I want the to be place in front of proforma invoice heading

Because its taking a lot of space in invoice

like this-

Change the Letterhead Logo Alignment and customize the Print Style set “margin-top” with a negative value.

I have tried that too, but still I am not able to get both PI and image in one line,

Also, I don’t know why but my margin size is not working I kept on changing them but they are not showing any result.

Step 1: Create a new “Print Style”
Step 2: Customize CSS code

+8801973884424
Please knock me on telegram or WhatsApp.

Okay, thanks

@Anjalijangid Please copy the code below and paste it into the CSS text box.

.print-format * {
color: #000 !important;
}

.print-format .alert {
background-color: inherit;
border: 1px dashed #333;
}

.print-format .table-bordered,
.print-format .table-bordered > thead > tr > th,
.print-format .table-bordered > tbody > tr > th,
.print-format .table-bordered > tfoot > tr > th,
.print-format .table-bordered > thead > tr > td,
.print-format .table-bordered > tbody > tr > td,
.print-format .table-bordered > tfoot > tr > td {
border: 1px solid #333;
}

.print-format hr {
border-top: 1px solid #333;
}

.print-heading {
border-bottom: 1px solid #aaa;
margin-bottom: 10px;
margin-top: -40px;
}

Worked !! Thanks