Bullet List / Changes to Boldface
I have a bullet list that upon export from InDesign to ePub ends up with a bold face type: ADE, Sigil, Calibre.
Is there a way to change the boldface back to the regular typeface?
Here's the HTML and CSS, plus a screenshot of the export.
HTML
<ul>
<li class="bullet-list-ii">identify and elevate your sense of self; </li>
<li class="bullet-list-ii">define the merit of your art;</li>
<li class="bullet-list-ii">and fortify your character with an organic confidence based on awareness for all the seasons of your life. </li>
</ul>
CSS
}
p.bullet-list-ii {
font-family: "Adobe Caslon Pro";
font-weight: normal;
font-style: normal;
font-size: 0.88em;
line-height: 1.33em;
text-decoration: none;
font-variant: normal;
text-indent: -1.71em;
text-align: left;
color: #000000;
margin: 0.17em 3.43em;
}
|