sarah_h wrote:
Can I use a horizontal *and* a vertical menu on the same page?
Yes, if you want to have submenu links in vertical menu (lets call it a submenu) you can use menumanager to show only top level links in the horz menu like this
Code: Select all
{cms_module module='menumanager' number_of_levels="1"}
it will only show first level menu nodes. For the submenu you can call like this
Code: Select all
{cms_module module='menumanager' collapse="1" start_level="2"}
(collapse makes sub sub items hide if not on the sub page)
sarah_h wrote:
Can I use images for the horizontal menu with hover and current link styling? (I'm presuming this is done in the CSS
Most of the time there is no need to use special images for link nodes, you can get better results with background images (with css) so you can make your text smaller and larger
sarah_h wrote:
Can I (if I wanted too) create menu's without the menumanager i.e. hard code the menu's into each page? What would a menu page line look like? I know this is not the right thing to do but I'd like to try
you can just write the link as html or use {cms_selflink page="page_alias"} and let cmsms create the link (there are lots of option for cms_selflink you can find all of them in extensions -> tags -> cms_selflink help link)
plus there is an option for menumanager to show only wanted nodes with 'items="contact,home"' option.
sarah_h wrote:
Lastly (not menu related), will the admin editors work on a MAC?
should work, but fckeditor gives way too much headache...
sarah_h wrote:
I notice that there are several menus available as menuxxx.tpl how can I edit one of these or, better still, add one?
in menumanager -> file templates use the copy button on the right to create your own editable copy of a template (bulltemenu.tpl is the default if menumanager doesnt have 'template="templatename"' option.)