Lists add unwanted elements to ordered and unordered lists
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2024 10:13 PM - edited 09-20-2024 10:18 PM
Hi. Here is my list problem. It just popped a few days ago.
I create a list and save the page. I open the article and see the list added an unwanted line (<li> </li>) to the end of the list. I open the HTML editor, remove the line of code, and save the article. When I reopen the article, the unwanted line is back.
Any thoughts about solutions?
Thanks.
<ol>
<li>Go to the admin page.</li>
<li>Go to the top menu and click All.</li>
<li>Enter knowledge in the search field.</li>
<li>Scroll down.</li>
<li> </li> >>>> why does this get added and how stop it??
</ol>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2024 11:08 PM - edited 09-20-2024 11:10 PM
Use the below CSS and check if it works
li {
margin-bottom: 0px;
padding-bottom: 0px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2024 03:25 AM
Thank you for that, but I don't think I can access the CSS.