Can this be done?

Everything related to LinkMan - reciprocal links manager
Post Reply
jswilko
Posts: 5
Joined: Fri Aug 11, 2006 10:08 pm

Can this be done?

Post by jswilko »

Hi

First of all I would like to say the script is great.

What I would like to know is if there is a way to modify it slightly so that when the links are displayed on the links.php page there is a line space betwwen each link/description. I just think they look a little squashed together and it would be easier to read if there was a gap.

Thanks
J
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

Hello jswilko,

Yes this can be done by editing the links.php file.
Change line 48 (links.php file version 1.03)

Code: Select all

echo '<a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> - '.$description.'<br>';
to

Code: Select all

echo '<a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> - '.$description.'<br><br>';
The change is that there is an extra <br>.

Greetings,
Henrie
jswilko
Posts: 5
Joined: Fri Aug 11, 2006 10:08 pm

Post by jswilko »

Thanks I'll give it a go.

J
Post Reply