For example, in the following code:
<ul class="link-list">
<li class="list-item-link"><a href="#">Lorem ipsum dolor</a>
</li>
<li class="list-item-link"><a href="#">Suspendisse pulvinar mi</a>
</li>
<li class="list-item-link"><a href="#">Aliquam erat volutpat</a>
</li>
<li class="list-item-link"><a href="#">Interdum et malesuada</a>
</li>
</ul>
I would like to be able to change the list item links to have the following:
<li class="list-item-link"><a class="my-class" href="#">Interdum et malesuada</a>
</li>
I can't seem to get access to the <a> tag itself in the list item link. And when trying to find a workaround using other components, it seems as though the unordered list and unordered link items do not allow me to have them act as containers for inserting a text item link, which would allow me to add a custom class to the link itself.
If this is not possible, I was wondering if anyone knows of a way to expand the Custom HTML Element code box, so that I can see a little more of what I am editing.
Thanks for any ideas. I have been using SD3 off and on, but usually just code in Visual Studio Code or JetBrains IDE with Emmet, which allows for a pretty fast coding experience. I like the idea of using SD3 to componentize a lot of the standard HTML, but would like to be able to do it in a Coffee Cup way.
Thanks,
Mike