Posts

Showing posts with the label CKEditor

Sitecore Content Hub CKEditor Bullet Point Issue

Image
Problem Statement: While working with the CKEditor (Rich Text Editor) in Sitecore Content Hub, I have encountered one issue in which my content was listed in alphabetical order. When the author updates any content in the particular CKEditor field and saves the changes, the alphabetical list automatically changes to a numbered list.  After the author edits and updates the content, and clicks on save: Solution: It appears we are experiencing an issue in the Content Editor where nested numbered lists are displayed as alphabets in the editor:  Another example: However, after saving, the lists appear as numbers: To ensure the display is consistent, we need to add the following CSS to the Content Detail page in the page settings:  .content-field ol ol {     list-style-type: lower-latin; } For more information, please refer to the documentation for the CSS tab in the page settings: Sitecore Content Hub CSS Documentation ...