Hi @maxxcgn,
If I understood correctly (after translating your message to English using Google Translate), you want to move the title to the right, isn’t?
If so, you can achieve it with this code snippet:
/**
* WooCommerce PDF Invoices & Packing Slips:
* Align the PDF invoice title to the right
*/
add_action( 'wpo_wcpdf_custom_styles', function( $document_type, $document ) {
if ( $document_type == 'invoice' ) {
?>
.document-type-label {
text-align: right;
}
<?php
}
}, 10, 2 );
If you haven’t worked with code snippets (actions/filters) or functions.php
before, read this guide: How to use filters