View Single Post
Old 06-27-2011, 12:47 PM   #5
SamL
I mess around with Epubs
SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.SamL once ate a cherry pie in a record 7 seconds.
 
Posts: 82
Karma: 1566
Join Date: Mar 2011
Location: Cambridge, MA
Device: mac, ipad, nook, kindle
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.
SamL is offline   Reply With Quote