Your theme has ul, ol { list-style: none; } in your stylesheet. To change it, get a custom CSS plugin or use your theme’s builtin custom CSS option (if one exists) and put:
ul, ol { list-style: circle; }
Here’s a list of other supported list style types: https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
thx! appreciate your help!
i’m still thinking though that the theme developer needs to sort this out, yes? part of the fine tuning?
i used the CSS you offered in the Custom CSS area (it didnt work directly editing in the stylesheet for some reason) and the bullets appeared, but without the proper indent, or formatting.
best wishes, Ralf
I’m sorry, I misread your first sentence. Try putting these styles into your custom CSS:
.page .entry-content ul {
list-style: square;
}
.page .entry-content ul,
.page .entry-content ol {
margin: 0 0 20px 20px;
}
.page .entry-content li > ul,
.page .entry-content li > ol {
margin: 0 0 5px 20px;
}
I think this might have been an oversight on the developer’s part. These styles are the same as the styles for blog posts, except that they apply to static pages.
thx Stephen! i’ll try it out! best wishes, Ralf