You can find several ways how you can prevent users from printing or copying content from the Reader UI of your portal.
- Hide the Print this topic button.
Add the following class definition to the Branding.css file:CSSbutton.ArticleEditor_btnPrint {
display: none;
} - Hide the content when it's being printed.
Add the following HTML markup to the additional tags section of the Master Page in your Portal settings:HTML<style type="text/css" media="print">* { display: none;}</style>
- Deny content selection.
Add the following markup to the same place in the Master Page settings:HTML<style>
body
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
</style>