Bulleted lists with sub-bullets

Hi all,

I am trying to work with some text that requires bulleted lists with sub-bullets. I can’t seem to figure out how to get this to work unless I use an html asset. Is there something I’m missing with the Rich Text asset?

TIA
Tim

Additionally, I have tried the “increase indent” button but it doesn’t seem to do anything.

Hello Tim @tlitostansky,

You can use nested HTML lists:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

This is how it would appear once added to a rich text asset:

image

Once the HTML has been added to the HTML Text of the Rich Text asset you can use the font options to make changes to the appears and it will append it as necessary.

-Ryan

Ok great. I’ll give that a shot. So does what does the “increase button” do? I can’t seem to get it to do anything.