Quote:
Originally Posted by Toxaris
Simple. Just put the paragraphs you want in blockquote tags. So, something like this:
Code:
<blockquote>
<p>First line of the song</p>
...
<p>Last line of the song</p>
</blockquote>
|
and then you define blockquote in your .css file however you want the overall song to look. If I were you, I'd have not only a top and bottom margin, but also a left and right margin to further set off the block. So the entry in the .css file might look like this:
Code:
blockquote {
/* adjust the values to your taste. Stay with units of em or % for best results */
margin-top=0.5em;
margin-bottom=0.5em;
margin-left=3.0em;
margin-right=3.0em;
/* put other formatting stuff here +/
}
Play around with it, and see what it does. That's how most of us learned!
Hth
Albert