Problem with font size in preview

facua

New Member
We have installed maxbulkmailer on a windows server 2016. The version we are using is 8.6.9-ES 64bit.
When writing in html the preview texts look tiny and impossible to read.
Attached screenshots.
Do you have any idea why this might happen?
Regards.
 

Attachments

  • Captura de pantalla de 2019-01-09 14-55-28.png
    Captura de pantalla de 2019-01-09 14-55-28.png
    27.2 KB · Views: 2
  • Captura de pantalla de 2019-01-09 15-03-33.png
    Captura de pantalla de 2019-01-09 15-03-33.png
    28.7 KB · Views: 2

stanbusk

Administrator
Staff member
I am aware of this problem. It happens when no font style is given in rare conditions I haven't been able to reproduce here so far. A fast solution is to provide a font style either or both for the whole body part and the text itself like in the example below.

HTML:
<html>
<body style="font-size: 100%; font-family: Helvetica, Verdana, Arial, sans-serif;">
<p style="font-size: 12px; font-family: Helvetica, Verdana, Arial, sans-serif;">
Some misc text here
</p>
Other text here
</body>
</html>

--
Follow maxprog.com on Facebook | Google+ | Linkedin | Twitter | YouTube
and keep up-to-date with the latest Max Programming updates!
 

facua

New Member
Thanks for the answer.
At the moment we have modified all the templates and it will work for us, but we will have to keep in mind if we create templates in the future.
 
Top