Hi ,
I am using AEM 6.1 and I have requirement to create multi level list with bullet points/number in RTE. I am using indent/outdent and creating list. Issue is after one level of bullet circle point I am not able to use circle bullets again in second level , it will convert circle into square bullet.
I am trying to achieve below list in AEM RTE but I am not able to convert square bullet into circle bullet after first level
--------------------------------------------------------------------
: Screen shot of my list in AEM RTE
Thanks
You can use style for list, which will be easy to handle list-decoration via CSS.
Thanks Arun, is there way in AEM RTE to convert square bullet into circle bullet without adding any personal style because my Client doesn't want to select style every time to author the list. Please suggest
Thanks,
Views
Replies
Total Likes
yes, you can do for that you need to write below css in your clientlibs
ul{list-style-type: disc;}
please specify outer wrapper class also to applicable this changes within scope.
e.g.
.page__main ul{list-style-type: disc;}
it will convert all your bullet list style to disc.
Views
Replies
Total Likes
Views
Likes
Replies