Links - Open New Window (Blank)

webekle

EVOLUTION X
Hello there

When we click on the ranking member of the links we have to do to open in a new window? (blank)

Good Day
Emre
 

Basti

Administrator
Staff member
Moved to general support.

To answer your question, takeing for example table_rop_row.html
Code:
<a href="{$url}" onclick="out(this,'{$username}');" class="show_banner" title="{$title}" rel="nofollow">{$title}</a>
To open a link a new window, the link tag needs target="_blank", like so
Code:
<a href="{$url}" onclick="out(this,'{$username}');" class="show_banner" title="{$title}" rel="nofollow" target="_blank">{$title}</a>
 

webekle

EVOLUTION X
Thank you Basti.
Code was table_row.html attaching.
Website by clicking on the link in the statistics , what should I do to open a new window ?
 

Basti

Administrator
Staff member
Basicly is the same, whenever a link shall open in new window, add that tag to the link

stats.html has the link at the top
Code:
<a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow">{$url}</a>
and the link of the banner
Code:
<a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow">
just target="_blank" to any link you wish
 

randomcash

Member
Humm i'm trying to understand where exactly i should add the
Code:
target="_blank">
code?
Which file shall i open in a text editor? Under which directory?
All i want is that all of the links that are clicked, open in a new window

Thanks
 
Hello @ all

I was able to extend the link at the top and the link for the banner with target = "_ blank".
How do I do that with the screenshot on stats.html?
I only have {$ screenshot}.

VS1.8 default

Greeting
Andreas
 
Top