Gossamer Forum
Home : Products : Links 2.0 : Customization :

Post deleted by Madonna

Quote Reply
Post deleted by Madonna
Quote Reply
Re: How do I.........? In reply to
I have replied to your PM, so hopefully that will sort things out :)

For those of you who want to know how to do it, just follow these instructions;

You need to open site_html_templates.pl and find the

# Then we print out the name linked, new if it's new, and popular if its popular.

bit.

Then, as you can see, it is just HTML, so replace;

$output .= qq|<dl><dt><strong><a class="link" href="$url">$category_name</a></strong> <small class="numlinks">($numlinks)</small> |;


with

$output .= qq|<dl><dt><img border="0" src="http://www.locationtoimage.com/image.gif"><strong><a class="link" href="$url">$category_name</a></strong> <small class="numlinks">($numlinks)</small> |;


Andy

webmaster@ace-installer.com
http://www.ace-installer.com
Quote Reply
Re: How do I.........? In reply to
Actually it is better to use a path like:

$output .= qq|<dl><dt><img border="0" src="/images/image.gif"><strong><a class="link" href="$url">$category_name</a></strong> <small class="numlinks">($numlinks)</small> |;

This means that if you change domains then you don't need to redo all your links and also it makes it harder if someone decides to steal your code because if you use full url's then they can copy and paste your code into theirs and it will use your bandwidth.



Paul
Installations:http://wiredon.net/gt/
Support: http://wiredon.net/forum/

Quote Reply
Post deleted by Madonna In reply to
Quote Reply
Post deleted by Madonna In reply to
Quote Reply
Re: How do I.........? In reply to
Just follow the instructions that come with the mod - all the info you need is there. Alternatively contact an installer.

Paul
Installations:http://wiredon.net/gt/
Support: http://wiredon.net/forum/

Quote Reply
Post deleted by Madonna In reply to