On a slightly different note:
Are you using the to create an indent in your paragraph??
Quote:
<p class="chapstart"> Just ...
|
If you are, I would recommend using CSS to perform that function...it makes your coding a little cleaner. I would also recommend NOT indenting the first paragraph of each chapter. This is purely artistic preference - you can do it however you wish - it just seems to be the normal way of doing things these days.
eg.
in CSS:
.chapstart {text-indent:0}
p {text-indent:1.2em}
in html:
<p class="chapstart">Just like her life.</p>
<p>yadda yadda yadda</p>
Cheers,