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 3165 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

Pop Up a Page, or a Page with a Form on it

Mark Buelsing 0 3336 Article rating: No rating

If you want to pop up a page on top of the current one, add the following to the end of the querystring to remove the page skin and containers.

?dnnprintmode=true&SkinSrc=%5bG%5dSkins%2f_default%2fNo+Skin&
ContainerSrc=%5bG%5dContainers%2f_default%2fNo+Container

 

If this is a form, add the following to have the form close when it is submitted.

&afcallparentonsubmit=angridEditDone

RSS
RSS
1234