mailtrain
mailtrain copied to clipboard
removed google fonts that would load from google servers (privacy)
Removed every fonts that could be found on https://fonts.google.com
and that was written behind font-family:
, except Noto Sans (in mosaico), as it was local.
For everyone just fast trying to get them out of a template, just search in your template theme in the file layout and remove:
this line <mj-font name="Lato" href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic" />
and change this line
<mj-all font-size="15px" color="#2D3E4F" font-family="Lato, Helvetica, Arial, sans-serif" />
to this:
<mj-all font-size="15px" color="#2D3E4F" font-family="Helvetica, Arial, sans-serif" />
and change this line
.alert { max-width: 520px; font-family: Lato, Helvetica, Arial, sans-serif; }
to this:
.alert { max-width: 520px; font-family: Helvetica, Arial, sans-serif; }
(remove from both lines Lato,
)
should fix: https://github.com/Mailtrain-org/mailtrain/issues/718
@bures What do you think? Would removing Google fonts be okay with you?