Quote:
Originally Posted by JSWolf
Here is the CSS and HTML I would use for your lists.
|
I added that to the page.
Weirdly enough ReadEra renders the text in italics.
I added : text-decoration: none;
to:
.list {
margin-left: 1.2em;
text-indent: -1.2em;
}
But it still renders as italicized in ReadEra
Thanks,
WV-Mike
Quote:
Originally Posted by JSWolf
HTML
Code:
<blockquote>
<p class="list">Virginia Creeper, Creeping</p>
CSS
Code:
blockquote {
margin-top: 1em;
margin-right: 1.5em;
margin-bottom: 1em;
margin-left: 1.5em;
}
.blockquote {
margin-top: 1em;
margin-right: 1.5em;
margin-bottom: 0;
margin-left: 1.5em;
}
.list {
margin-left: 1.2em;
text-indent: -1.2em;
}
Then you you get to the end of the first stanza...
Code:
</blockquote>
<blockquote>
For the last stanza, use...
Code:
<blockquote class="blockquote">
To prevent the chance of a blank page depending on settings.
|