💯

WORDPRESS Cocoon 設定

2021/05/25に公開

Cocoon

https://wp-cocoon.com/

外観 > テーマスタイル > スタイルシート Cocoon Child: スタイルシート (style.css)

画像保存を不可にする設定

img {
pointer-events: none;
}
img {
-webkit-touch-callout:none;
-webkit-user-select:none;
-moz-touch-callout:none;
-moz-user-select:none;
touch-callout:none;
user-select:none;
}

文字保存を不可にする設定

body{
user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-khtml-user-select:none;
-webkit-user-drag:none;
-khtml-user-drag:none;
}

iframeをセンタリングする設定

.video-container {
margin: 0px auto;
}

Discussion