Im having trouble getting a menu to work. im also having a problem figuring out what i should be doing with my menu. My menu is this css code;
Code: Select all
table.topNav {
width: 778px;
/*height: 25px;*/
border-collapse: collapse;
text-align: center;
border-right: none;
border-bottom: 1px solid #5F5F5F;
border-left: none;
margin: 1px 0px 0px 0px;
padding: 0px;
clear: both;
float: none;
}
table.topNav tr {
background: #FFFFFF;
border-collapse: collapse;
border: 0px;
margin: 0px;
padding: 0px;
}
table.topNav td {
background: #b962a6;
border-collapse: collapse;
border: 0px;
margin: 0px;
padding: 0px;
}
table.topNav a:link {
font: 11px Verdana, sans-serif;
color: #FFFFFF;
text-decoration: none;
background: #b962a6;
display: block;
padding: 3px;
margin: 0px;
}
table.topNav a:visited{
font: 11px Verdana, sans-serif;
color: #FFFFFF;
text-decoration: none;
background: #b962a6;
display: block;
padding: 3px;
margin: 0px;
}
table.topNav a:hover {
background: #d9088a;
color: #333333;
}

but in cms made simple, this happens

the error code i see when i preview in cms ms is this
Code: Select all
string(353) "Smarty error: [in module_db_tpl:MenuManager;nav line 1]: syntax error: unrecognized tag: width: 778px; /*height: 25px;*/ border-collapse: collapse; text-align: center; border-right: none; border-bottom: 1px solid #5F5F5F; border-left: none; margin: 1px 0px 0px 0px; padding: 0px; clear: both; float: none; (Smarty_Compiler.class.php, line 439)" string(128) "Smarty error: [in module_db_tpl:MenuManager;nav line 1]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" string(219) "Smarty error: [in module_db_tpl:MenuManager;nav line 13]: syntax error: unrecognized tag: background: #FFFFFF; border-collapse: collapse; border: 0px; margin: 0px; padding: 0px; (Smarty_Compiler.class.php, line 439)" string(129) "Smarty error: [in module_db_tpl:MenuManager;nav line 13]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" string(219) "Smarty error: [in module_db_tpl:MenuManager;nav line 19]: syntax error: unrecognized tag: background: #b962a6; border-collapse: collapse; border: 0px; margin: 0px; padding: 0px; (Smarty_Compiler.class.php, line 439)" string(129) "Smarty error: [in module_db_tpl:MenuManager;nav line 19]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" string(268) "Smarty error: [in module_db_tpl:MenuManager;nav line 25]: syntax error: unrecognized tag: font: 11px Verdana, sans-serif; color: #FFFFFF; text-decoration: none; background: #b962a6; display: block; padding: 3px; margin: 0px; (Smarty_Compiler.class.php, line 439)" string(129) "Smarty error: [in module_db_tpl:MenuManager;nav line 25]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" string(268) "Smarty error: [in module_db_tpl:MenuManager;nav line 33]: syntax error: unrecognized tag: font: 11px Verdana, sans-serif; color: #FFFFFF; text-decoration: none; background: #b962a6; display: block; padding: 3px; margin: 0px; (Smarty_Compiler.class.php, line 439)" string(129) "Smarty error: [in module_db_tpl:MenuManager;nav line 33]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" string(165) "Smarty error: [in module_db_tpl:MenuManager;nav line 41]: syntax error: unrecognized tag: background: #d9088a; color: #333333; (Smarty_Compiler.class.php, line 439)" string(129) "Smarty error: [in module_db_tpl:MenuManager;nav line 41]: syntax error: unrecognized tag '' (Smarty_Compiler.class.php, line 583)" table.topNav table.topNav tr table.topNav td table.topNav a:link table.topNav a:visited table.topNav a:hover
im calling the template to the page with {menu template='nav'} (nav is the name of my template)
next, how do i add items to the menu? essentially how do i make my site look the way i want