Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Line after title_linked on cool page

Quote Reply
Line after title_linked on cool page
Hi,

I only like to put a line break after the title_linked category on the cool page. Where can I put this line in?

Kai
___________________________________________
http://www.westalgarve.de
http://www.portugalforum.org
http://www.portugal-links.de
Quote Reply
Re: [kailew] Line after title_linked on cool page In reply to
You could try using the "loop". From the top of my head, its something like;

Code:
<%loop links_results_loop%>
<%title_linked%><BR>
<%include link.html%>
<%endloop%>

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Line after title_linked on cool page In reply to
Hi Andy,

it works, but now the results are not grouped and every link has the category ...

Before it looked like

CATEGORY1
link1
link2
link3

CATEGORY2
link1
link2
link3

CATEGORY3
link1
link2
link3

But now it looks

CATEGORY1
link1

CATEGORY1
link1

CATEGORY2
link1

CATEGORY2
link1

CATEGORY3
link1


Any ideas? I'm trying to find where I've to put this break ... in the code.

Kai
___________________________________________
http://www.westalgarve.de
http://www.portugalforum.org
http://www.portugal-links.de

Last edited by:

kailew: Nov 19, 2004, 1:41 AM
Quote Reply
Re: [kailew] Line after title_linked on cool page In reply to
Mmm... you could try hacking one of the .pm files (/admin/Links/Build.pm).

Find;

Code:
$output .= "<p>$title";

(about line 372)

..and change to;

Code:
$output .= "<p>$title<BR><BR>";

This is a dirty hack (its never a great idea to edit the core files, as it then gives problems when doing future upgrades).

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!