I' am having a small issue where I cannot remove the link reference from the print view.
This is what I can on my HTML side
<table style="width: 436px; height: 374px;" border="0" cellpadding="5">
<tbody>
<tr style="background-color: #edfbef;">
<td><span style="color: #3366ff;"><a title="Electricity Tariffs and Rates" href="http://newfea.oceanic.net.fj/your-home/electricity-tariffs-and-rates/"><span style="color: #3366ff;"><strong>Electricity Tariff & Rates</strong></span></a></span></td>
<td>Find out how you are being charged for the power you use at home</td>
</tr>
</tbody>
</table>
This is what I have on my header.php page for media queries
<link href="<?php echo get_template_directory_uri(); ?>/resources/css/print.css" rel="stylesheet" media="print">
Here is a snapshot how it looks in normal HTML View
Here is the Media Print Vision
You can see from the print view there are the link reference of the links. Is there a way I can remove this using CSS.
I have tried display: none, visibility: hidden, its doesn't because it hides the whole link text with it.