0

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.

Peter O.
  • 32,158
  • 14
  • 82
  • 96
sandraqu
  • 1,428
  • 1
  • 14
  • 31

2 Answers2

1

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.

Ryan Doom
  • 2,407
  • 1
  • 16
  • 13
0

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.

EfficionDave
  • 2,736
  • 3
  • 31
  • 38