Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    Don’t know, haven’t ever tried. When I get a few minutes I’ll see what I can figure out.

    To change the font styles in emails, you need to use inline CSS in the template:

    <p style=”font-family: arial”>Hallo,</p>

    Thread Starter celeryuk

    (@celeryuk)

    Thanks Sasdts,

    I think I’ve done that already but the font is ignored, it still appears as Times NR font. Example below:

    <?php $second =”<tr><td style=’font-family:Trebuchet;’ align=’left’ width=’100′>”.date(“d-M”, strtotime($dtg)).”</td>

    thanks.

    I see…

    Have you escaped the the quotes so PHP will display correctly?
    <td style=\”font-family:Trebuchet;\”

    And have you tried adding another font after Trebuchet?
    style=”font-family:Trebuchet, arial, sans-serif;”

    Thread Starter celeryuk

    (@celeryuk)

    thanks, tried that, no change:

    <p style=\’font-family:Trebuchet, arial, sans-serif;\’>Welcome to our latest news”</p>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change email font’ is closed to new replies.