I'm experiencing a small issue where I am unable to remove the link reference from the print view.
Below is the HTML code snippet:
<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 in my header.php file for media queries:
<link href="<?php echo get_template_directory_uri(); ?>/resources/css/print.css" rel="stylesheet" media="print">
Here is a snapshot of how it looks in normal HTML View:
And here is the Media Print Vision:
In the print view, there are visible link references. Is there a way to remove this using CSS?
I have attempted using display: none and visibility: hidden, but that hides the entire link text as well.