Sigil 0.8.7
Sometimes I have some email or usenet headers in my document, and I want to make those headers single spaced. They currently have a blank line between them because each line is surrounded by <p> and </p> tags. How do I make them single spaced?
These headers should not be separated from the rest of the message by <code> tags.
Thank you!
EDIT: Got it. I used this CSS:
Code:
.singlespace {
margin-top: 0px;
margin-bottom: 0px;
}
And this xhtml in my EPUB:
Code:
<p class="singlespace">line one</p>
<p class="singlespace">Line two</p>