When you move your help center articles to the new article editor, you might see format issues such as extra spaces, bullet lists that change to numbers, or headings that lose their styles. This article covers common format problems after you switch editors and how to fix them.
This article contains the topics below:
- Extra spaces and line breaks
- Bullet lists <ul> display as numbered lists
- Nested and multi-level don’t display correctly
- Heading formats are missing or lost after you press Enter
Issue: Extra spaces and line breaks
To fix this:
- Review your articles for extra spaces or blank lines, especially between paragraphs, lists, and headings
- Open the article in the new article editor
- Click the Source code icon from the toolbar
- Remove unnecessary <br> tags or extra spaces, especially inside lists or near headings
- Save and preview the article to confirm the issue is resolved
Issue: Bullet lists <ul> display as numbered lists
Reason: Your theme CSS overrides the default style.
To fix this:
- Go to Knowledge admin > Customize design > Customize > Edit code > style.CSS
- Inspect your CSS for rules such as
ul { list-style-type: decimal; } - Change or add
ul { list-style-type: disc; } - Use the Preview feature to check the final format before you click Publish
Issue: Nested and multi-level don’t display correctly
Reason: The new article editor doesn’t natively support mixed-style nested lists. For example, numbers for the first level and letters for the second, in the editor UI.
To fix this, update your theme CSS to create custom nested number styles in published articles.
Add CSS such as:
ol {
counter-reset: item;
padding-left: 10px;
}
li {
display: block;
}
li:before {
content: counters(item, ".") " ";
counter-increment: item;
}In the editor, nested lists might show a uniform number style, but the published view restores the correct hierarchy (numbers, letters, Roman numerals). A custom number style might not appear in the editor preview unless you insert CSS in the article source, which isn't recommended for maintenance reasons.
Issue: Heading formats go missing or reset after you press Enter
To fix this:
- Open the article in the new article editor
- Refresh your browser and clear the cache
- Contact Zendesk Customer Support for further help.
For more information, see Transitioning to the new article editor.