I don't know about everyone else, but I haven't had much luck using <i> tags. Instead I make a style in the css for my roman, italics, bold etc.
Quote:
span.roman {
font-weight: normal;
font-style: normal;
}
span.italics {
font-weight: normal;
font-style: italic;
}
span.bold {
font-weight: bold;
font-style: normal;
}
|
doing it this way, it works on all devices for me.