Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator t-p

    (@t-p)

    This may be a plugin or theme conflict. Please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.

    If you can install plugins, install and activate “Health Check”: https://wordpress.org/plugins/health-check/
    It will add some additional feature under create a new menu position Tools > Site Health.
    On its troubleshooting tab, you can Enable Troubleshooting Mode. This will disable all plugins, switch to a standard WordPress theme (if available), allow you to turn your plugins on and off and switch between themes, without affecting normal visitors to your site. This allows you to test for various compatibility issues.
    There’s a more detailed description about how to use the Health Check plugin and its Troubleshooting Mode at https://make.wordpress.org/support/handbook/appendix/troubleshooting-using-the-health-check/

    Thread Starter brshadow

    (@brshadow)

    Hi @t-p

    Thank you for the reply.

    I don’t want to switch to another theme because it may mess up my website when I switch back to mine.

    I’ve disabled my plugins one by one (except the Redux, as it will break my website I think). Here’s a list of them

    View post on imgur.com

    My WP’s Health Check is Good (Great job! Your site currently passes all site health checks.)

    Can you please take a look at my CSS, as I believe that’s the culprit? It will greatly appreciated.

    Thank you

    • This reply was modified 6 years, 1 month ago by brshadow.

    Well, this CSS makes the list with no bullets:

    
    ul {
    	list-style: none;
    	padding: 0;
    }
    

    At bottom of theme’s style.css, override it with:

    
    ul {
    	list-style: disc;
    }
    

    Ideally you are using a Child Theme so that when the theme updates, it doesn’t remove any custom CSS.

    Thread Starter brshadow

    (@brshadow)

    Hi @markrh

    Thank you very much for that.

    Adding it to style.css did nothing, but when I went to Customise > Additional CSS and added that it worked!

    Thank you so much!

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

The topic ‘WordPress does not display Bulleted lists in my posts’ is closed to new replies.