by Ace 1 June 30th 2016, 10:21 am
Heya
@Red Rose like SLGray said, you can't convert a text node to an image. But I think making the text unselectable would result in what you're aiming for
There are actually two ways to do this. You can choose whichever you prefer.
1. Using CSS
Administration Panel >> Display >> Colors >> CSS Stylesheet and add this code:
- Code:
a.topictitle { user-select: none; }
2. Using JavaScript
Administration Panel >> Modules >> HTML & JavaScript >> Javascript codes management (make sure Javascript codes are enabled) >> Create a new Javascript
Title: Unselectable Topic Titles
Placement: In all the pages
Javascript code:
- Code:
$('a.topictitle').disableSelection;
Whichever one you pick, they should disable people from selecting the topic titles. Sorry that there's really no way to convert text into an image without using an image hosting site or the PrntScr key. I hope this helps you