SOLVED

Links should not open in new tab

Go to solution
Victor_Sartori_
Level 1

Links should not open in new tab

Hi,

I am designing some landing pages and every link that I insert there will open in a new tab when clicked, but I wanted some of them to stay on the same tab instead.

Any ideas of how to do this?

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
JD_Nelson
Level 10 - Community Advisor

Re: Links should not open in new tab

When you insert the link, change the "target" to be "current window" or you can hard code it in the html via: <a href="http://targeturl.com" target="_self">

View solution in original post

3 REPLIES 3
JD_Nelson
Level 10 - Community Advisor

Re: Links should not open in new tab

When you insert the link, change the "target" to be "current window" or you can hard code it in the html via: <a href="http://targeturl.com" target="_self">

Justin_Cooperm2
Level 10

Re: Links should not open in new tab

Yeah, you should find this option available in the text editor when you insert a new link. There is a dropdown for "Target"

Victor_Sartori_
Level 1

Re: Links should not open in new tab

Thanks! It worked