Thanks Nick.
I did away with the 'Source' text and replaced it with a tool tip (when a user places the mouse on the URL, the user sees what it is does).
For those interested in adding a tool tip just replace the following in domain_results.php (line 48).
PHP Code:
echo $h->lang["domain_results_pre_domain"] . "<a href='" . $h->url(array('domain'=>$get_domain)) . "'>". $h->lang["domain_results_domain"] . $get_domain . "</a>\n";
WITH
PHP Code:
echo $h->lang["domain_results_pre_domain"] . "<a href='" . $h->url(array('domain'=>$get_domain)) . "' title='ASDF'>". $h->lang["domain_results_domain"] . $get_domain . "</a>\n";
Replace 'ASDF' with 'whatever you want'
Bookmarks