I have an event schedule that is made up of link blocks that includes details about each presentation. For one of them, I’m trying to add a bulleted list, but this doesn’t work, I believe, because of the fear a rich text block could contain other links. In the read-only link attached, look at the second event:
Rich text blocks are restricted, but you could just add a bullet list element inside of your link bock. Afaik that’s unrestricted.
Another option is to use a relative-positioned container and an absolute-positioned linkblock over top of it with z-index: 1. Essentially clickjacking the underlying rich text block.
Another is to use JS and put a click event handler on your container.
I wasn’t able to do a normal bulleted list since I was pulling from a collection. After rearranging some elements, I was able to use the positioning solution. Thank you so much for your help!