I am using tables. I have 2 colunms 1 80% width of the page and another 20% of the page. The dockzone in the 20% of the page holds the docks and the main is for viewing the docks. The main area is blank (All though a picture os something that say drag stuff here would be nice). When I run the code I have the main zone is a wide skinny area. I was hope for an 80% X 80% main docking zone.
.Main { height:80%; width: 80%; } .Main { height:80%; width: 20%; } <td class="Main"> <telerik:RadDockZone ID="Main" Runat="server" height="100%" width="100%"> </telerik:RadDockZone> </td> <td class="Side"> <telerik:RadDockZone ID="Side" Runat="server" Height="450px" Width="100%"> <telerik:RadDock ID="RadDock1" Runat="server" Resizable="True" Text="MAP" Title="xy" Width="300px" Collapsed="True"> <ContentTemplate> </ContentTemplate> </telerik:RadDock> <telerik:RadDock ID="RadDock5" Runat="server" Resizable="True" Text="Blog" Collapsed="True" Title="x" Width="300px"> <ContentTemplate> </ContentTemplate> </telerik:RadDock> </telerik:RadDockZone> </td>