Quote:
Originally Posted by Toxaris
Without any coding example of the xhtml and css it will be impossible to help.
|
Absolutely correct. Maybe I should substitute <em> and forget about using bold-obliques?
Examples of the xhtml:
<h4>The <span class="bold-oblique">Power</span> of Fiction</h4>
<p class="Text-Indented">As Kylene has written, “Nonfiction lets us <span class="italic">learn</span> more; fiction lets us <span class="italic">be</span> more.”</p>
Examples of the css for p, h4, and the spans discussed:
p {
-epub-hyphens:auto;
-webkit-hyphens:auto;
color: #000000;
font-family: "Iowan Old Style Roman", Georgia, serif;
font-size: 0.875em;
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1.429;
text-align: left;
text-indent: 18px;
}
h4 { /*B Head (text head level1) */
-epub-hyphens: none;
-webkit-hyphens: none;
color: #000000;
font-family: Seravek, "Gill Sans", sans-serif;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: bold;
line-height: 1.40625;
margin-bottom: 2px;
margin-left: 0px;
margin-right: 0px;
margin-top: 15px;
text-align: left;
text-indent: 0px;
}
span.italic {
font-style: italic;
font-weight: normal;
font-variant: normal;
}
span.oblique {
font-style: oblique;
font-weight: normal;
font-variant: normal;
}
span.regular {
font-style: normal;
font-weight: normal;
font-variant: normal;
}
span.bold {
font-style: normal;
font-weight: bold;
font-variant: normal;
}
span.bold-italic {
font-style: italic;
font-weight: bold;
font-variant: normal;
}
span.bold-oblique {
font-style: oblique;
font-weight: bold;
font-variant: normal;
}