hi there!
initially I thought it wasn't that big of a problem, but now i realise it's super important!
links on hotglue automatically open in the same page you're in: if the link is for another website, the visitor will be gone from your page - and that's bad!
for example: I want to put a link for my other social web pages... but if I do that, the person who clicks it will be directed to facebook and we know they will never come back to your website...
SO, I figure out how to make ALL LINKS OF A PAGE open on a new tab using this simple code:
<base target='_blank'/>
but this is also not what I need.
I just need to choose which link I want to be opened on a new tab and which not.
this bugs:
<a href=”https://www.facebook.com/traplev5” target=”_blank”>facebook</a>
and becomes this: https://traplev.hotglue.me//https://www.facebook.com/traplev5
- a broken link
so can anybody help me on this? THANKS A LOT!!!