Hi, totally newbie here. Hopefully someone is willing to help.
I think I finally understand how to make my skin.html and my skin.css. The part I don't get is how do you make the "content panes" show up as boxes that you can insert modules to in DNN?
I am thinking it is by using the object model in the skin.xml file, but the DNN Blue .xml file only has objects for the BREADCRUMB token and TREEVIEW. Do I need to include all that in my XML file if I want breadcrumbs? And do I need to have a class style in my CSS to format the regular tokens, or is their a default that I can live with?
So do I do it (make the content pane containers show up) something like this?
HTML:
<div ID="leftpane" runat="server" class="contentpane">[LEFTPANE]</div>
CSS:
#leftpane {
/* my attributes etc. */
}
XML:
<Objects>
<Object>
<Token>LEFTPANE</Token>
</Object>
</Objects>
Tell me if I'm on the right track here please someone?
~Thank you! ~Bee