Hi All,
We are using AEM Saas version for our website. I am trying to use the list in RTE component and when I use the bold option with number list, the text is bold but the numbers are not bold.
Is there a workaround or solution for this?
I tried to add <b> tag in <ol>, but it doesn't work.
Many thanks in advance
Solved! Go to Solution.
Views
Replies
Total Likes
@jainrupal2408 Just override the style for <ol> and add the following
style="font-weight:bold;"
You will need a custom css class for <ol> with the above mentioned style.
I tested this on WKND content and works just fine (both numbers and text are bold-ed).
@jainrupal2408 Just override the style for <ol> and add the following
style="font-weight:bold;"
You will need a custom css class for <ol> with the above mentioned style.
I tested this on WKND content and works just fine (both numbers and text are bold-ed).
Thank you, yes it works !