Is there a way to use CSS to replace the image button in this code with a text link? This is a CRM system where the HTML page cannot be edited, only the stylesheet. The new file would have the same name as the original image.
<table class="MoreButTable">
<tbody>
<tr>
<td>
<a onmouseout="AndarButtonMouseOut('MoreButton');window.status='';return true;" onmouseover="AndarButtonMouseOver('MoreButton','../Style/SubtleButtons/AgencySearchOver.gif');window.status='<p> </p>';return true;" href="javascript:WasItClicked=true; document.forms['Designation'].NavigationButton.value='More';document.forms['Designation'].submit();">
<img title="<p> </p>" alt="<p> </p>" name="MoreButton" src="../Style/SubtleButtons/AgencySearch.gif">
</a>
</td>
</tr>
</tbody>
</table>