sublist bullets are not unique

  • Author
    Posts
  • #130774

    Sub list bullets are supposed to be different than the higher level ones. When I make a list block, the bullets are correct (sublist bullets are different than the higher level ones), but on the actual post they’re all the same.

    Website: hyrumjones.com

    #130775

    I have a screenshot, but no way to upload it.

    #130827
    Zed
    Cryout Creations mastermind

    Hi,

    Tempera uses only circles as list bullets, but applies different indentation for nested lists. This can be seen in the theme’s demo: https://demos.cryoutcreations.eu/wordpress/tempera/typograpy/

    You can restore the default browser list bullets with some CSS:

    body .entry-content ul li {
        list-style-type: disc;
    }
    body .entry-content ul ul li {
        list-style-type: circle;
    }
    body .entry-content ul ul ul li {
        list-style-type: square;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #130828

    Excellent! Thanks so much for the help!

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘sublist bullets are not unique’ is closed to new replies.