I am just learning how to build a website with CMSMS. I have finally designed my home page the way I want it to look using some code from Listamatic. Now my pages don't connect to the words on the page. Can you help me understand how to style the menu but still have it navigational?
Thank you for helping us neophites who are teaching ourselves.
website is maryjaneparkerart.com/cmsms/
[SOLVED] menu issues
[SOLVED] menu issues
Last edited by maryjane on Sat Jan 01, 2011 10:17 pm, edited 1 time in total.
Re: menu issues
Please post your template, so we can see how the pages are created.
Nullig
Nullig
Re: menu issues
{* Change lang="en" to the language of your site *}
{sitename}
{global_content name='Title'}
{stylesheet}
home
gallery
about
statement
contact
{content}
Re: menu issues
Where you have your menu ul li add {menu} and it will go thru your pages in content > pages and take all your pages and spit out an ul li for you which will auto add an active class to your menu active item, most likely if you go to menu manager you will see simple_navigation.tpl set as default, you may want to set the minimum_menu.tpl as default...
Re: menu issues
Should be something like this:
or better:
Nullig
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{sitename}</title>
{global_content name='Title'}
{stylesheet}
</head>
</__body>
<div id="navcontainer">
{menu}
</div>
{content}
<__body>
</__html>
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{sitename}</title>
{global_content name='Title'}
{stylesheet}
</head>
</__body>
<div id="navcontainer">
{menu}
</div>
<div id="content">
{content}
</div>
<__body>
</__html>
Last edited by Nullig on Sat Dec 18, 2010 6:35 pm, edited 1 time in total.
Re: menu issues
Since you have submenu items, you may want to set the cssmenu.tpl as the default in Menu Manager.
Nullig
Nullig