A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
Hi everyone,
I looked through the help and found an item on how to hide the Child/Page Menu system from the left column...
<!-- <portal:pagemenu id="PageMenu1" runat="server" useflexmenu="true"></portal:pagemenu> -->
The page displays as I would like except the left column is still reserved. I would like to set the Left Column Width to 0 (where the child/page menu was showing). It tried adding width="0" to the following line in the Layout.Master... of course it didn't work...
Is there a way to set the column width to 0 when I have the child/Page menus hidden.
Hi Phill,
The left column is still showing up because the <!-- --> comments are html comments which are client side, not asp.net comments which are server side. Use <%-- --> or remove the control altogether.
HTH, Joe D.
Hi Joe D.
Thanks. I removed the line completely and of course as you noted the menu was gone as I got the real-estate back too.
Great stuff, thanks.
Phill