在 dotnetnuke 中浮动在浮动中?
有没有办法将浮点数放入 dotnetnuke 的浮点数中?或者一个包含浮动内容的盒子?
到目前为止,我的尝试(向右浮动和相对位置)已经使内部框的编辑无法操作,这表明我必须有一个管理 CSS 和一个视图 CSS 或类似的东西。
Is there a way to put a float within a float in dotnetnuke? or a box with content inside a float?
So far, my attempts (float right, and position relative) have rendered the editing of the inner box inoperable, which suggests I must have an admin CSS and a view CSS, or something of that sort.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在使用 DNN 6 时遇到了一些奇怪的 CSS 问题。
通常可以通过执行clearfix/clear:both
或使用 z-index
来解决这些问题(如果该区域正在使用某种类型的旋转器或 jQuery 插件或也可能会干扰它的东西)。
I have had some odd CSS issues with DNN 6.
They were usually solved by doing a clearfix / clear:both
Or with z-index
If that area is using some type of rotator or jQuery plugin or something that could also potentially interfere with it.
这里没什么可说的,但听起来您正在寻找管理员皮肤功能。管理员皮肤是您编辑模块内容时使用的皮肤。您可以在站点设置中指定管理员皮肤。肯定有一些情况,我怀疑这就是其中之一,拥有单独的管理员皮肤会很有帮助。
但一般来说,我不知道 DotNetNuke 会阻止您做一些在 DNN 之外可以做的事情。它的换肤实现确实没有任何限制,因为它公开了 ASP.NET 的全部功能。唯一需要注意的是,有时您的内容周围会添加一些额外不需要的标记。借助 DNN6,他们使许多元素的渲染更加清晰、更加语义化。
There's not much to go on here but it sounds like you are looking for the Admin Skin functionality. The admin skin is the skin used when you are editing the contents of a module.You can specify the Admin skin in Site Settings. There are definitely cases, and I suspect this is one of them, where it's helpful to have a separate Admin skin.
But generally, I'm not aware of any cases where DotNetNuke will prevent you from doing something you can do outside of DNN. There really are no limitations in it's skinning implementation, as it exposes the full capabilities of ASP.NET. The only caveat is sometimes some additional unwanted markup is added around your content. With DNN6, they are making the rendering of lots of elements cleaner and more semantic.