Go to your ACP -> Templates & Styles -> Templates -> The theme name you want to add this to -> Index Page Templates -> index
Now add the following code above </head>:
Change the status to whatever you want it to say now find the <body> tag and replace it with the following:
Enjoy & Happy Coding!
Now add the following code above </head>:
Code:
<script language="javascript">
document.onmousedown=disableclick;
status="Sorry my theme is to be paid for and not ripped! Please try again another time! Good Bye!";
function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>Change the status to whatever you want it to say now find the <body> tag and replace it with the following:
Code:
<body oncontextmenu='return false'>Enjoy & Happy Coding!