Problem With PDF output

Hello Guys Im using ERPnext v7, my problem is when I create a pdf from thw web everything is to the left and no pictures are shown,

this is the output as suposed to be
I can only put one IMG sorry

but this is the result

I read about this error and add the hostname line to the site config but not solve the issue

the problem still with the PDF format what else can I do to solve this ? im using the production VM from ERPnext sire with Ubuntu and I perform a bench update yesterday to see if that fix the issue but nothing happens

best regards

this is my site config by the way

Hi @calcacibar,

I noticed the same thing.
Seems that there are some changes in the way ERPNext uses styling tags.
Or is it the Bootstrap version that changed it, I don’t know.
Or maybe they just remove the div class=“print-heading” completely.

Anyway. You will probably have to edit/add the style yourself.
If you add the

.print-heading {
text-align: right;
text-transform: uppercase;
font-color: #888;
font-weight: bold;
padding-bottom: 7px;
margin-bottom: 15px;
border-bottom: 3px solid #aaa;
}

It should almost look the same.

Maybe someone from ERPNext can shed some light on what the exact reason is.

hello jkeersmaekers, thank you for the advice, I will try this…

thanks again