Viewing 4 replies - 1 through 4 (of 4 total)
  • 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

    Thread Starter Ralfhum

    (@ralfhum)

    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.

    Thread Starter Ralfhum

    (@ralfhum)

    thx Stephen! i’ll try it out! best wishes, Ralf

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘bullets on pages’ is closed to new replies.