You check for blockquote
in your style.css
file and see how it is laid out. If you want it narrower, then set the width to a percentage or px number that matches the width of your post area….oh, wait. You want the poem to be as wide as the longest sentence in the poem? Yikes.
I haven’t yet heard of a way to do that. By default, you set the container “width” and then the text goes to the margin and then wraps. If you want to avoid things like:
Jack and Jill ran
up the hill
to fetch a pail
of water…
Then we have some problems.
I know you can set the text to indent on the first line in your CSS (style.css
) but I don’t know how to indent a second line if it wraps around, if it is even possible.
Okay, I did some searching on Google and I found this as a possibility:
.indenttext {padding-left: 2em; }
.indenttext:first-line{margin-left: -2em; }
You’d have to set your paragraph into a div such as this:
<div class="indenttext">Jack and Jill......</div>
And it “might” work. The first part of the style creates a padding, but the second style says to move the first line back to the margin (minus) and then indent the rest.
Try that.