Hi,
You can only use the “block style” menu on the right column of the template. If you want to make the left menu appear in blocks, please take a look at this CSS(template_css.css):
/* Default Joomla! Menu */
#ja-rightcol a.mainlevel {
display: block;
padding: 3px;
color: #EEEEEE;
text-decoration: none;
border-bottom: 1px solid #484848;
}
#ja-rightcol a.mainlevel:hover,
#ja-rightcol a.mainlevel:active,
#ja-rightcol a.mainlevel:focus,
#ja-rightcol a.mainlevel#active_menu {
color: #FFA800;
background: #333333;
text-decoration: none;
}
#ja-rightcol a.sublevel {
display: block;
padding: 3px 3px 3px 18px;
text-decoration: none;
background: url(../images/arrow-off.gif) no-repeat 7px 8px;
}
#ja-rightcol a.sublevel:hover,
#ja-rightcol a.sublevel:active,
#ja-rightcol a.sublevel:focus {
color: #FFA800;
}
#ja-rightcol a.sublevel#active_menu {
color: #FFA800;
background: url(../images/arrow-off.gif) no-repeat 7px 8px #333333;
text-decoration: none;
}
/*End: Default Joomla! Menu */
Duplicate this CSS, change #ja-rightcol to #ja-leftcol, also change the color. 😉
Hope it helps!