No Right clicking (w/ message) →
Copy the code and paste it on your Notepad. Then Find (i.e Ctrl + F) for “Your message here” and replace it with your message. Then copy the code again and paste it after the <head> tag or before the </head> tag.
Note: I used black border and font, and white background. You can change them by altering them on CSS section.
Just Look for this..
<style type=”text/css”>
.disablerightclick{
position:absolute; /*Do not change*/
width: auto; /*Do not change*/
background-color: #FFFFFF; /*White*/
line-height:12px;
color: Black; /*Color of the font*/
font-size: 10pt; /*Size of the font*/
font-family: Trebuchet ms; /*Font*/
text-align: center;
padding: 5px;
z-index: 50; /*Do not change*/
visibility: hidden; /*Do not change*/
border: 3px solid #000000; /*#000000 is black*/}
</style>
For novice only, The bolded variables (the tag, the .disablerightclick, brackets, semi-colon) are very important. Do not erase them or else you will mess up the code.