The CreatorCon Call for Content is officially open! Get started here.

Lists add unwanted elements to ordered and unordered lists

robwhyte9829590
Tera Contributor

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>&nbsp;</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>&nbsp;</li> >>>> why does this get added and how stop it??
</ol>

 

 

2 REPLIES 2

debendudas
Mega Sage
Mega Sage

Use the below CSS and check if it works

li {
margin-bottom: 0px;
padding-bottom: 0px;
}

 

 

Thank you for that, but I don't think I can access the CSS.