#10534 closed Bug (invalid)
Set Lists Indent instead of default
| Reported by: | Sanjana | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Lists | Version: | 3.5.2 |
| Keywords: | Cc: |
Description
I am trying to create nested lists using the indent icon.
Lists created in CK Editor looks like shown below
•123456789101112131415
◦123332322132132121321
■3213321321321
I want to create list as shown below
•123456789101112131415
◦123332322132132121321
■3213321321321
Can you kindly let me know how to set the indent property to the editor only incase of Lists. I tried configuring the following but that seems to be working only for text indent and not for lists config.indentOffset = 1
Change History (3)
comment:1 Changed 12 years ago by
| Component: | General → Core : Lists |
|---|
comment:2 Changed 12 years ago by
| Keywords: | Lists Indent CKEditor removed |
|---|---|
| Resolution: | → invalid |
| Status: | new → closed |

Once you created a list you should look at source mode. There are HTML tags only.
List is styled with css in contents.css file. There is default rule (based on CKE 4.1.2)
ol,ul,dl { /* IE7: reset rtl list margin. (#7334) */ *margin-right: 0px; /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ padding: 0 40px; }Just change padding setting and you are done.