I have WP Help installed and just noticed that unordered lists
- are not working.
It appears that all other functions work, including Ordered
- lists.
Any suggestions on how to correct this?
I have WP Help installed and just noticed that unordered lists
It appears that all other functions work, including Ordered
Any suggestions on how to correct this?
I had the same problem.
If someone finds this, the fix I found was to add the following to "wp-help/css/wp-help.css"
div#cws-wp-help-document ul {
margin: 5px 5px 5px 15px;
list-style: disc;
}
div#cws-wp-help-document > ul {
margin: 10px 5px 10px 20px;
}
You may prefer to add code to your functions.php to avoid editing the plugin itself:
see this post
This works well enough though.
You must log in to post.