View Single Post
Old 05-15-2011, 02:47 PM   #1
Soxendom
Connoisseur
Soxendom began at the beginning.
 
Soxendom's Avatar
 
Posts: 62
Karma: 10
Join Date: May 2009
Device: Sony PRS T1
Problem with non-indented paragraph

I am attempting to alter an epub generated with Writer2epub - just the bits that it doesn't cater for.
My problem is this:
In the book, in the middle of some ordinary paragraphs there are a couple of verses of a song. The verses come out fine (Thanks Jelleby - I used some code that you'd shown - I hope you don't mind), but the paragraphs afterwards are non-indented as though they were a new chapter - which they aren't.
I put in <p> </p> in between the verse and the paragraph but that didn't seem to work either. How do I get it so that the next paragraph is indented.
The coding for the paragraphs are:
Code:
p
    {
    margin:0pt;
    text-indent:0em;
    text-align: justify;
    font-size: 1.00em;
    }
p+p
    {
    text-indent:1.5em;
    text-align: justify;
    font-size: 1.00em;
    }
Soxendom is offline   Reply With Quote