I just started to use the last CMSMS MLE with easyphp 2.0
I success to install it, create the few pages to start my project, but I have a problem with a template and its menus…
I read the User Handbook about Menu Manager and watch this really nice video
http://cmsmadesimple.org/uploads/media/ ... colate.htm
but I still not understand how to do to makes 2 menus : a top horizontal short menu (home, contacts etc.) and a left vertical one with my other pages.
The template that I try to use is the following one
http://www.freecsstemplates.org/preview/thegathering
I tried to add the line {cms_module module=”menumanager”} instead of this code between the divs
Code: Select all
<div id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Links</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</div>
but it seems that the result doesn’t follow my own css and write this code instead off :
Code: Select all
<div id="menu">
<ul>
<ul>
<li class="currentpage"><h3><dfn>Current page is 1: </dfn>Home</h3>
</li>
<li><a href="http://127.0.0.1/PNCMS/index.php?page=articles&hl=en"><dfn>2: </dfn>Articles</a>
</li>
<li><a href="http://127.0.0.1/PNCMS/index.php?page=links&hl=en"><dfn>3: </dfn>Links</a>
</li>
<li><a href="http://127.0.0.1/PNCMS/index.php?page=contacts&hl=en"><dfn>4: </dfn>Contacts</a>
</li>
</ul> </ul>
</div>
Code: Select all
#menu {
width: 750px;
height: 50px;
margin: 0 auto;
background: url(images/img4.jpg) no-repeat;
}
#menu ul {
margin: 0;
padding: 0;
list-style: none;
line-height: normal;
}
#menu li {
display: inline;
}
#menu a {
display: block;
float: left;
height: 20px;
padding: 10px 20px 0 20px;
border: none;
border-right: 1px solid #110F09;
font-size: 85%;
font-weight: bold;
color: #F4D1C5;
}
#menu a:hover {
color: #FFFFFF;
}
Could anyone help me to obtain a correct result for this menu ? (for the vertical one we’ll see that later

Thanks in advance for your help.