added on May 5, 2008 by
By clicking on the link of any website it should open in new window.
added on May 5, 2008 by
Hi,
if you want the link to open in a new window, you should modify your template for the category:
The default html for the category is:
<a href="{$URL}" title="{$ANCHOR}">{$ANCHOR}</a> {$DESCRIPTION} 
Change this by adding a target="_blank" to this:
<a href="{$URL}" title="{$ANCHOR}"
target="_blank">{$ANCHOR}</a> {$DESCRIPTION} 
added on May 7, 2008 by
I put...
<a href="{$URL}" title="{$ANCHOR}"
target="_blank">{$ANCHOR}</a> {$DESCRIPTION} 
in both the index.php and in category folder but it did not work in IE or firefox. Hmmmmm.
added on May 7, 2008 by
In the category folder? You should change the template from
LinkEX Admin > Categories > Edit
There you can edit what the html for each link should be.
- v0id