Why don’t you simply redefine the font of the corresponding tag in your custom CSS? Usually, italics are marked with the “em” tag. Like in
<em>italics stuff</em>
So, all you need to do is add
em {
font-family: <the font you like to see here>;
}
to our custom CSS file.
To be on the safe side, just in case the “I” tag is also used for italics, just add it as well:
em, i {
font-family: <the font you like to see here>;
}
-
This reply was modified 1 year, 8 months ago by nipponcycles.