以下是我要使用margin-top: 20px;
删除按钮的镜头,例如
在后端页面编辑器中,我正在编辑此样式但不受影响。 Backend Image
pdf为this
如何禁用下载按钮??
我使用的插件只有一个php文件
答案 0 :(得分:1)
这个pdf加载iframe
,这就是为什么以前的css不起作用的原因。你应该尝试jquery。基本上,您只需将style
元素附加到内部iframe的head
。
$('iframe').load( function() {
$('iframe').contents().find("head")
.append($("<style type='text/css'> .flowpaper_bttnDownload{display:none !important;} </style>"));
});
答案 1 :(得分:0)
如果您使用任何WP插件显示PDF,那么首先检查您的插件中是否有任何禁用下载按钮的选项。否则你可以尝试下面的CSS
.flowpaper_bttnDownload{
display: none !important;
}