is it possible to adjust the height of the container topic
Last Post 10/16/2007 2:26 AM by Lee Sykes. 1 Replies.
Author Messages
bobbyjosephg
Nuke Pro
Nuke Pro
Posts:82


--
10/15/2007 10:47 AM  
Hi,
   On each module there is a place on top of the module where the name of the module is displayed.We are able to edit that.Now when we the DNN gray skin there is a gray bar on which the module name is shown.I found that the size of the font could be reduced by changing in skin.css.But I did not find a way to reduce the height of the bar.Is'nt that possible?Please help.

Regards,
Bobby
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
10/16/2007 2:26 AM  
Hello,

I managed to reduce the height doing the following - I experimented on the DNN-Blue containers, but it will be the same for grey:

.containerrow1_blue {
    background-image: url(gradient_LtBlue.jpg);
    height: 20px;
}

- This will not reduce the height unless you strip some of the code from the container .ascx file - so, the problem you have is that some of the table cells are setting a minimum height because of their content - so I removed them - I deleted:

                    [td valign="middle" nowrap]
                        [dnn:ICON runat="server" ID="dnnICON" /]
                    [/td]

and also

[td valign="middle" nowrap]
                        [dnn:VISIBILITY runat="server" ID="dnnVISIBILITY" /]
                        [dnn:ACTIONBUTTON5 runat="server" ID="dnnACTIONBUTTON5" CommandName="ModuleHelp.Action"
                            DisplayIcon="True" DisplayLink="False" /]
                    [/td]

Hope this helps,
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


---