Here is one solution you can start from.
In your text, add in this html structural code:
Quote:
<div class="divider"> </div>
|
In your stylesheet, put this rule:
Quote:
div.divider {
width: 40%;
margin: 1em auto;
border-bottom: double .5em darkblue;
}
|
This should get you started in the right direction for making your own adjustments.