I need to eliminate the link associated with the date shown in a SharePoint calendar list. Despite using developer's tools, I cannot locate an anchor tag to disable using CSS. My goal is to accomplish this task solely through CSS.
Here is the code snippet from SharePoint:
<tr class="ms-acal-summary-dayrow">
<td date="5/12/2013" evtid="day">
<div>
<nobr>
Text -12
</nobr>
</div>
</td>
</tr>
The text "Text-12" contains a link that I want to remove. How can I do this using only CSS?