Is there a future for "list" support?

Another inquiry. I know this has also been asked a few times but wanted to resurrect to get a road map or if its even on the map for that matter. Thx.

<ul>
  <li>Menu Item 1</li>
  <li>Menu Item 2</li>
  <li>Menu Item 3</li>
</ul>

Hey Phil, YES, it’s definitely on the map, very close to the top. Thanks for your patience!

1 Like

Just added initial (erm, exprimental?) support for UL/OL/LI blocks:

By default, lists will retain list-style-type: disc from browser defaults, so if you’re building something fancy like a navigation UI, you’ll need to set the list style to none in the Typography section:

Would love to hear if this is working for you and how we can improve it in the future.

Great new feature! The only thing what i miss is list-style-image

1 Like

Awesome! Loving it. Now can’t wait for custom breakpoints =)

How do I add an image to list bullet?

At the moment you’ll have to add custom code to your site targeting your specific list:

<style>
  ul {
    list-style-image:url('image.gif');
  }
</style>

Replace image.gif with your hosted image (you can also upload an image into the designer, publish it and copy paste the image url there).