Thread: Line Spacing
View Single Post
Old 07-04-2012, 10:28 AM   #7
ldolse
Wizard
ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.ldolse is an accomplished Snipe hunter.
 
Posts: 1,337
Karma: 123455
Join Date: Apr 2009
Location: Malaysia
Device: PRS-650, iPhone
Change these lines of the extra css:
Code:
p {
	margin:0 3% 0 10%;
	line-height:1.5em;
	text-indent:-5%;
}
e.g. if you want it centered:
Code:
p {
	margin:0 3% 0 10%;
	line-height:1.5em;
	text-indent:-5%;
	text-align: center;
}
Read about text-align here:
http://www.w3schools.com/cssref/pr_text_text-align.asp

Since you're on the Kindle, if you want the blocks of text indented you need to use blockquotes - do this in the markdown source by preceding the lines with '>', e.g.
Code:
This line isn't indented

> This line is indented one level

>> This paragraph is indented two levels
There are a few examples in the book I attached.

The bad news is on the Kindle you have don't have a ton of control over poetry formatting.
ldolse is offline   Reply With Quote