
Originally Posted by
paul8agrape
So are you saying I probably shouldn't use blockquote?
Not just to indent text, no. The way you use it in "Warriors in the Rain" is fine: you're quoting text, too much to quote as part of the paragraph. The way you use it in "The Need For Enemies" though is incorrect, and it should be replaced with a list:
HTML Code:
<ul>
<li>I will be respectful of others, regardless of their perspective or group identification.</li>
<li>I will be suspicious of any "permission" to break the rules in order to get to some perceived enemy.</li>
<li>I will give all technologies, ideas and groups a fair and impartial hearing.</li>
<li>I will assume human complexity. (No one is all good or bad.)</li>
<li>I will stop listening to sources of fear and conspiracy.</li>
<li>I will stop ascribing superhuman features and capacities to people, ideas and systems.</li>
</ul>
I tried using the below suggested CSS code but my ul was just standard...no dark blue color, etc.
Code:
blockquote, ul.disc {
color: #000055;
font-weight: bold;
}
Did you add the "disc" class name to it? That is, the start-tag should have looked like:
HTML Code:
<ul class="disc">
So what would be the suggested way for handling quotes and unordered lists in the following examples (test website) if I want them to share the same style as far as bold text and dark blue?
Well, assuming that you used the markup I posted at the beginning of this post, you could use the same style rule I quoted above albeit without the class:
Code:
blockquote, ul {
color: #000055;
font-weight: bold;
}
Does that help?
Mike
Bookmarks