Clarification: First, I figured out that it wasn’t line spacing within a bulleted line, it was the line spacing between the bullets.
So I got some other input, and built this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<style type="text/css">
.postlist ul {
list-style-position:outside;
margin:0;
padding:0;
}
.postlist li {
list-style-type:square;
margin-left:20px;
}
</style>
</head>
<body>
some header
<ul class="postlist"><li>list item 1</li><li>list item 2</li></ul>
</body>
</html>
It works in a standard web page, though it still doesn’t remove the extra line between the “some header” and the first list item.
AND, the class doesn’t work in the WordPress Page…all it provides is square bullet…still much space between bullets, and no indent.
If I just pop this:
some header
<ul class="postlist"><li>list item 1</li><li>list item 2</li></ul>
into a new page, it looks ok (except for the line at the start of the list) in the editor “visual”, but doesn’t have the indent or correct spacing between lines in the page view.
So, should the styles be in rtl.css or style.css or both?
Any thing special about formatting the styles in these files, or are they just standard css?