Need to change the height of left pane
Last Post 11/06/2008 9:08 AM by Lee Sykes. 6 Replies.
Author Messages
Mohammed Farid
Nuke Newbie
Nuke Newbie
Posts:2


--
10/12/2006 3:18 AM

    Can one tell me how i do change the height of left pane.

    I want to reduce the height.

    Is there any setting for it......PLz help

    Lee Sykes
    DNN Creative Staff
    Nuke Master VI
    Nuke Master VI
    Posts:4945


    --
    10/12/2006 3:45 AM
    Can you provide any further info - do you have a URL?

    What is the code for your html file?
    Lee Sykes
    Site Administrator
    Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

    Twitter: www.twitter.com/DNNCreative

    Lee Sykes's Facebook Profile
    Mohammed Farid
    Nuke Newbie
    Nuke Newbie
    Posts:2


    --
    10/12/2006 4:41 AM

    <

    table border="1" width="980" cellpadding="0" cellspacing="2" ID="Table1">

     

    <tr>

     

    <td valign="top" width="200">

     

    <table border="1" cellpadding="2" cellspacing="2" ID="Table2">

     

    <tr>

     

    <td valign="top" id="LeftPane" runat="server"></td>

     

    </tr>

     

    <tr>

     

    <td valign="top" id="SubLeftPane" runat="server"></td>

     

    </tr>

     

    </table>

     

    </td>

     

    <td valign="top">

     

    <table width="100%" border="1" cellpadding="2" cellspacing="2" ID="Table3">

     

    <tr>

     

    <td height=23 id="ContentPane" runat="server"></td>

     

    </tr>

     

    <tr>

     

    <td class="SubHead" id="SubContentPane" runat="server"></td>

     

    </tr>

     

    </table>

     

    </td>

     

    <td valign="top" width="200">

     

    <table border="1" cellpadding="2" cellspacing="2" ID="Table4">

     

    <tr>

     

    <td id="SubUpperRightPane" runat="server" ></td>

     

    </tr>

     

    <tr>

     

    <td id="SubLowerRightPane" runat="server"></td>

     

    </tr>

     

    </table>

     

    </td>

     

    </

    Here i want to set the height of SubUpperRightPane and SubLowerRightPane.

    Normally after adding text in the pane,at the buttom of pane we get some blank space.

    I just want to remove that space.Is there any properties for setting height in the above pane.

    Or how should i remove that blank space. 

    </tr>table>
    Lee Sykes
    DNN Creative Staff
    Nuke Master VI
    Nuke Master VI
    Posts:4945


    --
    10/12/2006 8:41 AM
    Hello,

    I'm assuming that the html you entered in above got messed up and was supposed to read: - Note the end table did not have the correct closing bracket. - was this the problem?

    <table border="1" width="980" cellpadding="0" cellspacing="2" id="Table1">
    <tr>
        <td valign="top" width="200">
            <table border="1" cellpadding="2" cellspacing="2" id="Table2">
                <tr>
                    <td valign="top" id="LeftPane" runat="server"></td>
                </tr>
                <tr>
                    <td valign="top" id="SubLeftPane" runat="server">&nbsp;</td>
                </tr>
            </table>
        </td>
        <td valign="top">
            <table width="100%" border="1" cellpadding="2" cellspacing="2" id="Table3">
                <tr>
                    <td height="23" id="ContentPane" runat="server"></td>
                </tr>
                <tr>
                    <td class="SubHead" id="SubContentPane" runat="server">
                    </td>
                </tr>
            </table>
        </td>
        <td valign="top" height="100%" width="200">
            <table border="1" cellpadding="2" cellspacing="2" id="Table4">
                <tr>
                    <td id="SubUpperRightPane" runat="server"></td>
                </tr>
                <tr>
                    <td id="SubLowerRightPane" height="100%" runat="server">
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    </ table>

    I placed this table in VWD and can't see the problem appearing when adding text into the table. Isn't the code for the right hand side the same as the left, so do you also get the error on the left hand side?

    Is the blank space caused by the container or any padding that you have added into the css?
    Lee Sykes
    Site Administrator
    Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

    Twitter: www.twitter.com/DNNCreative

    Lee Sykes's Facebook Profile
    M@mun
    Nuke Newbie
    Nuke Newbie
    Posts:2


    --
    11/05/2008 1:59 AM
    I am M@mun from Bangladesh.i have installed DNN-.4.09.00 in my local pc. I want to equal the height of MidLeftPane, Middle Pane & MidRightPane (plz see attached pic.). There are 3 seperate containers in those panes. How can i equal their Panes/Containers size because the midleftpane container is larger than other 2 panes. Please help me?
    M@mun
    Nuke Newbie
    Nuke Newbie
    Posts:2


    --
    11/05/2008 2:03 AM
    I am M@mun from Bangladesh.i have installed DNN-.4.09.00 in my local pc. I want to equal the height of MidLeftPane, Middle Pane & MidRightPane (plz see attached pic.). There are 3 seperate containers in those panes. How can i equal their Panes/Containers size because the midleftpane container is larger than other 2 panes. Please help me?
    Lee Sykes
    DNN Creative Staff
    Nuke Master VI
    Nuke Master VI
    Posts:4945


    --
    11/06/2008 9:08 AM
    Hello,

    This could be complex to setup and depends on the structure of your skin. Have you tried simple elements such as height: 100%; in your skin.css? Are you using tables or divs / CSS?
    Lee Sykes
    Site Administrator
    Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

    Twitter: www.twitter.com/DNNCreative

    Lee Sykes's Facebook Profile


    ---