Increase the font size more than 112

WordPress
20 November, 2020 12:48:55
alrojas78
Topics: 1
Messages: 1

I am interested in creating a field that shows me a large number, but the maximum size that allows me is 112 to be able to customize a larger size to the font?
21 November, 2020 00:25:54
E2Pdf
Support
Topics: 7
Messages: 3163
Hi,

You must be able to increase font-size by adding filter to your theme functions.php: https://codeshare.io/alw0Zy

add_filter('e2pdf_controller_templates_max_font_size', 'e2pdf_controller_templates_max_font_size_custom', 10, 1);
function e2pdf_controller_templates_max_font_size_custom($max_font_size) {
return 512;
}

P.S. We will increase it by default to 512 on next update.

We remain at your service.
We would really appreciate your feedback at WordPress.org!