COMO DESACTIVAR LA OPCIÓN DE COPIAR TU BLOG

Teméis que ir a plantilla editar y pegar  el código justo antes de <head> en la cabecera del blog.
<script>
function disabletext(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}
</script>