Gossamer Forum
Home : Products : Links 2.0 : Customization :

adding URL under description of links

Quote Reply
adding URL under description of links
Hi,

Could anyone show me how to add URL (URL:http://www.somewhere.com) under description of links like AltaVista stly.

Thanks
Quote Reply
Re: adding URL under description of links In reply to
In the site_html.pl go too...

- A Link
Here is the orignal part (don't copy)

if ($rec{'Description'}) { $output .= qq| <$font>- $rec{'Description'}</font>\n|; }
if ($rec{'isNew'} eq "Yes") { $output .= qq| <$font_new><i><b>new</b></i></font>|; }
if ($rec{'isPopular'} eq "Yes") { $output .= qq| <$font_pop><i><b>pop</b></i></font>|; }

$output .= qq| <$font_date><em>(Added: $rec{'Date'} Hits: $rec{'Hits'})</em></font><br>
</ul>
|;
--
Now here is what you copy and paste what you see above -

if ($rec{'isNew'} eq "Yes") { $output .= qq| <$font_new><i><b>new</b></i></font>|; }
if ($rec{'isPopular'} eq "Yes") { $output .= qq| <$font_pop><i><b>pop</b></i></font>|; }
if ($rec{'Description'}) { $output .= qq| <$font>- $rec{'Description'}</font>\n|; }

$output .= qq| <br><font size=-2>Url: $rec{'URL'} </font><br>
<$font_date><em>(Added: $rec{'Date'} Hits: $rec{'Hits'})</em></font><br>
</ul>
|;





------------------
Mean bbs deleted me ;(
Quote Reply
Re: adding URL under description of links In reply to
Trent
Thank you very much. It WORKED.
That was what I want.

thanks