I wanted to get some input regarding this subject.
I need to protect the images and descriptions from being pilfered from my website. Or at least make it difficult and time consuming.
I know I can do it varying ways through HTML and jQuery.
As I have been researching I have seen some comments regarding SEO and this type of action could hurt SEO performance? Which I dont believe this to be the case.
I am using one of the templates provided and wanted to inquire about code examples and verify any SEO effects.
Im not sure if I am posting this subject in the correct area of the forums. If so please relocate.
A few tricks. [code]<body oncontextmenu="return false;">[/code] CSS [code] body {-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}[/code] Or target specific items[code] .prodimage,.detailimage {-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}[/code] Using JavaScript to disable the button on a mouse is considered bad form.
Marshall CENLYT Productions - ms designs Affordable Web Design Custom Ecommerce Designs Responsive Websites Cenlyt.com
If your hosting is running on cPanel there is a Hotlink Protection facility under the Security section within cPanel. You can add file extensions to the list, eg: jpg, png, bmp, etc etc
I haven't used that feature so I can't say how effective it is.