💯
WORDPRESS Cocoon 設定
Cocoon
外観 > テーマスタイル > スタイルシート 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