Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Looking for the solution to have top heading to be an ordered list but not the sub list.

Avatar

Level 2

vvl1_0-1672175898564.png

So, I want to remove the numbered with circles which are in sublists(2,3,4) which looks like below image.

vvl1_1-1672176278441.png

Is there is a way we can do something like ".textimage-text ol not child of ul li::before" ?

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi ,

 

Can you please try this below, it maybe useful.

 

<ul>
<li style="list-style-type: decimal;">one</li>
<li>two</li>
<li>three</li>
</ul>

 

result :

     1.one

  • two
  • three

Thanks 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 2

Hi ,

 

Can you please try this below, it maybe useful.

 

<ul>
<li style="list-style-type: decimal;">one</li>
<li>two</li>
<li>three</li>
</ul>

 

result :

     1.one

  • two
  • three

Thanks