Well, first a few quirks of mine... always use valid code... multiple word font names need quote marks...
Code:
#nav ol li{margin: 0.0px 0.0px 12.0px 35.0px; font: 18.0px "Times New Roman";}
Now this is inside your CSS file. So on your HMTL you need to call it:
Code:
<div id="nav">
<ol>
<li>The degree she or he recognizes, is aware of and acknowledges these universal realities.</li>
<li>The strategies he or she resorts to deal with them, with awareness or without.</li>
</ol>
</div>
However, with that bit of CSS it will make ALL li's in that div use that style... if you only want one li to have it... make some slight changes:
Code:
.nav {margin: 0.0px 0.0px 12.0px 35.0px; font: 18.0px "Times New Roman";}
We took out specific declaration (ol and li) and made it a class instead of an ID so we can use it again later if needed). then the HTML:
Code:
<ol>
<li>The degree she or he recognizes, is aware of and acknowledges these universal realities.</li>
<li class="nav">The strategies he or she resorts to deal with them, with awareness or without.</li>
</ol>
Now there is no more div, and only the li with the class name will be affected by the CSS.
Bookmarks