Quote:
Originally Posted by Notjohn
>If you weren't careful (or didn't use the same CSS across all your books), you may have a mess on your hands.
This proved to be the case, but it was all fixable, and I now have a validated file. Thank you all! -- NJ
|
In the future you may be able to avoid differing CSS if you use a consistent CSS with combinators. For example, instead of having a paragraph class so it's not indented after a scene change, I use
Code:
hr + p {
text-indent: 0;
}
Although I confess that when cleaning up books I've bought I find it easier when they do use a lot of classes.