|
Are the pages written in Php? Because then you can replace the iframes dynamically with a replacement script.
Step 1: Make an class inside your .css called seenolink with specs like fontsize='1px'; color=white;
Step 2: Place the followingcode inside your page
Search and destroy!
<?
$iframe = "Name of the data output!";
$iframe = str_replace("<iframe","<a href='#' class='seenolink'",$iframe);
$iframe = str_replace("src=","",$iframe);
$iframe = str_replace("</iframe>","</a>",$iframe);
?>
If your page is not in php you can also use an similair code for .asp!
Greatz, By Stephan from Holland!
|