簡體   English   中英

DNN-不帶角色欄的打印頁面

[英]DNN - print page without persona bar

我嘗試以管理員身份登錄時,從我的自定義DNN模塊打印頁面,而沒有角色欄。 我嘗試創建自定義外觀,但仍然不能阻止角色欄菜單標題顯示在我的打印品上。 我已在DNN社區論壇上發布了此問題,但從未得到任何回應。

問題可能是角色欄是在使用JavaScript的iframe中創建的。 因此,如果您在打印過程中隱藏了整個iframe,則可能會起作用。

@media print {
    #personaBar-iframe {
        display: none !important;
    }
}

Persona Bar iframe看起來像這樣:

<iframe id="personaBar-iframe" allowtransparency="true" scrolling="false" src="/DesktopModules/admin/Dnn.PersonaBar/index.html?cdv=59" style="width: 80px;" frameborder="0"></iframe>

這些文件位於\\DesktopModules\\Admin\\Dnn.PersonaBar文件夾中

這對我有用...

#personaBar-iframe{ display: none; } iframe#personaBar-iframe{ display: none; } .pb-scroll-wrapper{ display: none; } .pb-scroll-wrapper iframe#personaBar-iframe.ipad{ display: none; }

我在DesktopModules \\ Admin \\ Dnn.PersonaBar \\ css \\ personaBarContainer.css中找到了它。 感謝VDWWD為我指引正確的方向。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM