How could i put in a simple <a href menu, no bullets etc, just one href after another?
oh, and im sure its possible in pimenu, but without english instructions its useless to me.
thanks
Menu
Re: Menu
Hi fadum,
Do you want links below each other? Or beside each other? You can still use bulletmenu, but through the stylesheet select not to display the bullets (list-style: none for the li items).
All the three default menus that will be included with the CMSMS 0.11 (bulletmenu, CSSMenu and EllNav) use unordered lists to build the menus. You can see examples at http://svntest.cmsmadesimple.org
Do you want links below each other? Or beside each other? You can still use bulletmenu, but through the stylesheet select not to display the bullets (list-style: none for the li items).
All the three default menus that will be included with the CMSMS 0.11 (bulletmenu, CSSMenu and EllNav) use unordered lists to build the menus. You can see examples at http://svntest.cmsmadesimple.org
Re: Menu
Use the translator service of google , altavista or so.oh, and im sure its possible in pimenu, but without english instructions its useless to me.
This is a simple template call it simple.tpl and place it in tmp/templates.
{foreach from=$rawmenu item=entry}
{if $entry->type neq 'separator'}
url}"{$entry->menutext}
{else}
{/if}
{/foreach}
to use it
{pimenu template="simple.tpl"}
Re: Menu
Patricia wrote: of course you can have , but as westis mentioned, do not forget to have "list-style: none" in your css for the li definition
then : no bullets![]()
I understand that, just not very tidy.
will give it a go,Use the translator service of google , altavista or so.
This is a simple template call it simple.tpl and place it in tmp/templates.
{foreach from=$rawmenu item=entry}
{if $entry->type neq 'separator'}
url}"{$entry->menutext}
{else}
{/if}
{/foreach}
to use it
{pimenu template="simple.tpl"}
Thanks
Re: Menu
Typo, change thiskazuki wrote: Doesn't work for meI get a blank page.
Code: Select all
<a href="{$entry->url}"{$entry->menutext}</a><br />
Code: Select all
<a href="{$entry->url}">{$entry->menutext}</a><br />