Menu

Solutions to Problems or Custom Needs in a Website

Many solutions we create for one site can be used and appreciated on other sites also.

Have a look at this list of components and solutions we have developed over time and if you could benefit from any of them you are welcome to them.

Please let us know if you would like to discuss the details or would like some help getting one installed.

Collapse DNN empty panes in Edit Mode

Mark Buelsing 0 3078 Article rating: No rating

When a DNN page is in edit mode, the empty window panes are unnecessarily tall and force you to scroll to see your content. You can collapse the empty panes with a little CSS.

One way is to add the following to the portal.css page

 

.dnnModuleManager.dnnSortable {
    min-height: 22px!important;
}

 

Another way is to edit the css file that has the class that is making them too tall.

httpdocs\DesktopModules\Admin\Dnn.EditBar\Resources\ContentEditorManager\Styles

Line 9  min-height: 135px !important;

Change it to 22 px

min-height: 22px !important;

And save

RSS
RSS
1234