Page 1 of 1

Can this be done?

Posted: Fri Aug 11, 2006 10:15 pm
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

Posted: Sat Aug 12, 2006 6:08 am
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

Posted: Mon Aug 14, 2006 10:42 pm
by jswilko
Thanks I'll give it a go.

J