Remove blank spaces
-
Hi, firstly thanks for this plugin. I have resized the invoice/packaging slip to fit my document size. It mostly works but I cannot find how to lower the margin of these two spaces which are highlighted in red in the attached image.
1. Space between title/logo + address/order detail section
2. Space between product heading bar + address/order detail section.I lowered margin of h1, h2, etc. with code below to remove most white spaces but cannot work out how to remove these remaining blank spaces.
/** * Custom styles for PDF documents */ add_action( 'wpo_wcpdf_custom_styles', function ( $document_type, $document ) { ?> /* Document label */ h1 { font-size: 6pt; margin-top: 0px; margin-bottom: 0px; padding-top: 0px; padding-bottom: 0px; } /* Shop name and other labels */ h3, h4 { font-size: 6pt; padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px; } /* Document body and order table */ body { font-size: 6pt; padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px; } dt, dd, dd p, .wc-item-meta { font-size: 6pt; padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px; } <?php }, 10, 2 );
Any help would be much appreciated.
Screenshot: https://i.imgur.com/d6dWwn3.png
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Remove blank spaces’ is closed to new replies.