ich versuche gerade meine erste Seite mit CMSms zu machen. Dazu habe ich mir dieses http://www.oswd.org/design/preview/id/3375 template ausgesucht. Ich habe dank der Videoanleitung auch alles soweit "konvertiert".
Nur das Menu will noch nicht so richtig. Ich habe über den Menu Manager eine CSS-Datei angelegt und dadurch schonmal das "Current page", sowie die Zahlen. Aber den Look vom Menu mit den weißen Linien und dem Bullet bekomm ich noch nicht hin.
So sieht mein Menu aus
Code: Select all
{* CSS classes used in this template:
.activeparent - The top level parent when a child is the active/current page
li.active0n h3 - n is the depth/level of the node. To style the active page for each level separately. The active page is not clickable.
.clearfix - Used for the unclickable h3 to use the entire width of the li, just like the anchors. See the Tools stylesheet in the default CMSMS installation.
li.sectionheader h3 - To style section header
li.separator - To style the ruler for the separator *}
{if $count > 0}
<ul id=nav">
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="<ul>" times=$node->depth-$node->prevdepth}
{elseif $node->depth < $node->prevdepth}
{repeat string="</li></ul>" times=$node->prevdepth-$node->depth}
</li>
{elseif $node->index > 0}</li>
{/if}
{if $node->current == true}
<li id="current" class="currentpage">{$node->menutext}
{elseif $node->parent == true}
<li ><a class="activeparent" href="{$node->url}"{if $node->accesskey != ''} accesskey="{$node->accesskey}"{/if}{if $node->tabindex != ''} tabindex="{$node->tabindex}"{/if}{if $node->titleattribute != ''} title="{$node->titleattribute}"{/if}>{$node->menutext}</a>
{elseif $node->type == 'sectionheader'}
<li >{$node->menutext}
{elseif $node->type == 'separator'}
<li class="separator" style="list-style-type: none;"> <hr />
{else}
<li><a href="{$node->url}"{if $node->accesskey != ''} accesskey="{$node->accesskey}"{/if}{if $node->tabindex != ''} tabindex="{$node->tabindex}"{/if}{if $node->titleattribute != ''} title="{$node->titleattribute}"{/if}{if $node->target != ''} target="{$node->target}"{/if}>{$node->menutext}</a>
{/if}
{/foreach}
{repeat string="</li></ul>" times=$node->depth-1}</li>
</ul>
{/if}
Code: Select all
<ul id=nav">
<li id="current" class="currentpage">Home
</li>
<li><a href="http://localhost:8080/cmsms/index.php?page=ueber-mich">Über mich</a>
</li>
<li><a href="http://localhost:8080/cmsms/index.php?page=album-1">Album 1</a>
</li>
</ul>

Ein anderes Problem was ich habe ist, dass seitdem ich mit dem Template arbeite, der Hintergrund vom TinyMCE nicht mehr weiß, sonder dunkel grau ist. Kann man das umstellen und hat dies etwas mit dem Template zu tun (im CSS was doppelt belegt)?
Vielen Dank für die Hilfe.