Is there any way to remove the icons that mark links to external sites?
Solved! Go to Solution.
Hello @fisk ...
The only thing I've been able to find for you is this question in the Instructional Designers group here in the Canvas Community: How to get rid of external link icon. If you are not following the ID group here in the Community, you might want to consider doing so by clicking on the link and then clicking on the "Follow" button on the top right corner of the page. Hope this helps!
Hello @fisk ...
The only thing I've been able to find for you is this question in the Instructional Designers group here in the Canvas Community: How to get rid of external link icon. If you are not following the ID group here in the Community, you might want to consider doing so by clicking on the link and then clicking on the "Follow" button on the top right corner of the page. Hope this helps!
Great - thank you!
I need to know about this too. The linked thread only applies to when other things leave an external link that isn't supposed to be there. However, I'm linking to external video downloads, but they create a new icon with each link.
I want to be able to remove the icons. Is this possible in any way?
Please help. Here's an image of my code. I can't find the exact code for the symbol.
Thanks.
Josh
Hi @fisk , @sjones , @Chris_Hofer , @jthompson5 , @GideonWilliams ,
This "feature" also drives me crazy, especially when copy/pasting links.
I'm not an admin, so I managed to remove it by adding a custom inline CSS (add this in the page's HTML view):
<style>
.ui-icon-extlink {display:none !important;}
.screenreader-only {display:none !important;}
</style>
The only problem is that, Canvas being Canvas, it removes it every time I save the page anew... so you'll need to make a copy of that code somewhere safe and paste it back every single time you save the page.