Hi there!
I have an odd widget issue causing empty link accessibility errors on our highly-trafficked apply page and I can’t figure out what’s happening.
My HTML format for each item in widget is:
<li class="shadow-sm" style="list-style:none;">
<a href="{href}" target="_blank">
<div>
<p class="month">
<strong>{date}</strong>
</p>
<p class="description">
{title}
</p>
</div></a>
</li>
but it is coming out like this (even just in the backend preview) with three empty links in it:
<li class="shadow-sm" style="list-style:none;">
<a href="https://events.smccd.edu/academic-calendar/event/93346-six-week-session" target="_blank"></a>
<div>
<a href="https://events.smccd.edu/academic-calendar/event/93346-six-week-session" target="_blank">
<p class="month"><strong>Jun 9</strong> </p>
</a>
<p class="description">
<a href="https://events.smccd.edu/academic-calendar/event/93346-six-week-session" target="_blank"></a>
<a href="https://events.smccd.edu/academic-calendar/event/93346-six-week-session">Six Week Session</a>
</p>
</div>
</li>
any thoughts on why? I don’t feel like I’m doing anything particularly odd here to cause this behavior. Thank you (: