Hi,
When I went to add a post to my blog I got the following error message: Error parsing Custom CSS, verify Custom CSS is valid.
So I went into Design > Custom CSS where I found the code pasted below. I think I put this code in there to prevent people from right clicking. It was to protect my images, but obviously something has changed and it is now giving an error message.
At the bottom of the code block it said they error was in the syntax in line 1.
I am using the Avenue template.
I'd really appreciate some help if anyone knows how I can fix it.
Thanks
Susan
<SCRIPT language=JavaScript>
var message = "function disabled";
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } }
document.onmousedown = rtclickcheck;
</SCRIPT>