I'm so close to creating my own custom container. I've created a photoshop design and it's all programmed in HTML with the style sheet I want. Now, I just need to do the voodoo to make it talk to DNN.
(My container has a faded out yellow daisy as a background image -- hence the style names.)
In my container, I've created a table like this where:
Row 1 = Title
Row 2= ContentPane
Row 3 = (Is this where I put SOLPARTACTIONS?)
I don't need Visibility and I don't need the Print. Just need the little Container menu that pops up.
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td class="YellowDaisyTitle"> </td>
</tr>
<tr>
<td runat="server" id="contentpane" class="YellowDaisyText"> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
I understand I need SOLPARTACTIONS, but I don't understand if I use a token, or if I need to create a separate XML file.
Thanks from a newbie.
Cathy