View Single Post
Old 10-26-2014, 10:16 PM   #7
st_albert
Guru
st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'st_albert gives new meaning to the word 'superlative.'
 
Posts: 698
Karma: 150000
Join Date: Feb 2010
Device: none
Quote:
Originally Posted by Toxaris View Post
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
st_albert is offline   Reply With Quote