added on Dec 16, 2006 by
hi guys,
how can i get the links on my page to disply like this,
Link | Link | Link | Link | Link | Link | Link | Link | Link | Link
Link | Link | Link | Link | Link | Link | Link | Link | Link | Link
Link | Link | Link | Link | Link | Link | Link | Link | Link | Link
added on Dec 18, 2006 by
I'm going to release a new version today, it has a table template feature. It could perhaps be used to make the output
you like..
I'll let you know when it's ready to download.
added on Dec 28, 2006 by
Doh. Forgot every thing about letting you know.. Been busy with the family and such :)
New version is out, just upgrade, and use the table tag in the category template. You can see the syntax under the
template tags, there's a little guide.
- v0id
added on Dec 28, 2006 by
<a href="{$URL}" title="{$ANCHOR}">{$ANCHOR}</a> {$DESCRIPTION}
added on Dec 28, 2006 by
i gotta be honest i dont understand it
added on Dec 29, 2006 by
No problemo. It's a bit tricky, and I'm not the best at writing documentation :)
http://demo.linkex.dk/linkex/
login with demo:demo goto Categories and check out the 1002 one:
BEGIN TEMPLATE:
{TABLE cols="2" border="1" cellpadding="1"}
<a href="{$URL}">{$ANCHOR}</a><br />
{$DESCRIPTION}
END TEMPLATE
Try it out and let me know how it works out :)
- v0id
added on Dec 29, 2006 by
Hi i am using the new version linkex.20061222 and I was wondering where is the code to make a link open up in a new
window. I read that you added it to the last version but I cant seem to find it in the new one. Or can you just tell me
what to put and where.........
Thanks,
Bob
added on Dec 29, 2006 by
To make the links open in a new window, just add target="_blank" to the links:
BEGIN TEMPLATE:
{TABLE cols="2" border="1" cellpadding="1"}
<a href="{$URL}" target="_blank">{$ANCHOR}</a><br />
{$DESCRIPTION}
END TEMPLATE
- v0id
added on Dec 30, 2006 by
ive got the links working the way i want them to, but how can i make the text smaller ? ive tried to add
"size="1" but it aint working
added on Dec 30, 2006 by
You should use the style tag; style="font-size:11px;"
Just do a search for "css font" on google and find more about style sheets to style the text
- v0id
added on Dec 30, 2006 by
cheers i think ive got it sorted now :-)