I don't know if there is an easy way to do it but here is how I do it in my DMX portals: 1. Change ComponentArt:SplitterPane with Id of GridContent in ViewCollection.ascx from a Height="60%" to Height="100%". 2. On the Panes component directly above the splitterpane add a _noshow to all of the css classes defined in that Panes control. 3. Modify module.css to add a display: none to .DetailsPane div class 4. Add the following to module.css : .VerticalSplitterBar_noshow, .CollapsedVerticalSplitterBar_noshow, ActiveSplitterBar_noshow { display: none; } Where the classes above correspond to the css classes in the panes control. The obvious downside to this is that I lose the changes when I upgrade. Jake |