SOLVED
SOLVED
In the CSS file I had to add the paragraph tags.
My CSS went from this:
ol.num {
list-style-type:numeric;
}
To this:
ol.num {
list-style-type:numeric;
font-family : serif;
line-height: 1.5em;
font-size: 1em;
text-align: left
}
Now it formats and looks fine. - Fabe
|