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!
Solved! Go to Solution.
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">
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">
Yeah, you should find this option available in the text editor when you insert a new link. There is a dropdown for "Target"
Thanks! It worked