Opened 9 years ago
Closed 9 years ago
#14852 closed Bug (expired)
Captioned Image drop near list items (ul, ol)
| Reported by: | Gitesh Purbia | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
Steps to reproduce
- Paste image into editor
- Move and drop image near the list item.
- Image will be overlay on text of list items.
Expected result =
Image should have some margin around image according to image alignment.
Actual result
The text is hiding near image if i drop image into list item. Image a overlaping text.

Are you by any chance talking about such code where '3' of item 3 is covered by the image?
If yes then this is a matter of using appropriate styles on HTML and is not editor fault e.g.
In order to use such HTML you need to configure CKEditor's ACF to allow it.
var editor = CKEDITOR.replace( 'editor1', { extraAllowedContent : 'li{clear}' });Finally - CKEditor will not and should not insert such extra styles by its own.