The table styling can be changed with a WordPress hook. Add this piece of code to your (child-)theme’s functions.php file:
1 2 3 4 5 6 |
function ez_add_pdf_css($css) { $css .= " .ezfc-summary-table { font-size: 18px; }"; return $css; } add_action("ezfc_pdf_add_header_css", "ez_add_pdf_css"); |